X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Fgame_sp%2Fvb_lib.c;h=f71693c0f73b5e0198b7655157b0fe8d3cf24076;hp=c4df2cf3d853ce0493659bcec7a4623251287b6b;hb=e51177796149f37de339bda83558c3c49758be93;hpb=e63e92923fa0196ba7d538d4c8f5a16994e3bee8 diff --git a/src/game_sp/vb_lib.c b/src/game_sp/vb_lib.c index c4df2cf3..f71693c0 100644 --- a/src/game_sp/vb_lib.c +++ b/src/game_sp/vb_lib.c @@ -2,182 +2,28 @@ // vb_lib.c // ---------------------------------------------------------------------------- -#include "vb_types.h" -#include "vb_defs.h" -#include "vb_vars.h" -#include "vb_lib.h" - #include "main_sp.h" +#include "vb_lib.h" -/* helper functions for constructs not supported by C */ -void *REDIM_1D(int a, int b, int c) -{ - return checked_calloc(a * (c - b + 1)); -} - -void *REDIM_2D(int a, int b, int c, int d, int e) -{ - return 0; -} - -boolean IS_NOTHING(void *a, int b) -{ - return 0; -} - -void SET_TO_NOTHING(void *a, int b) -{ - return; -} - -void MESSAGE_BOX(char *a) -{ - return; -} - - -char *CAT(const char *a, ...) -{ - return 0; -} - -char *GET_PATH(char *a, ...) -{ - return 0; -} - -char *INT_TO_STR(int a) -{ - return 0; -} - - -boolean STRING_IS_LIKE(char *a, char *b) -{ - return 0; -} - - -void FILE_GET(FILE *a, int b, void *c, int d) -{ - fseek(a, b, SEEK_SET); - - while (d--) - *(byte *)c++ = fgetc(a); -} - -int FILE_PUT(FILE *a, int b, void *c, int d) -{ - return 0; -} - - -/* this is just a workaround -- handle array definitions later */ -void *Array(int a, ...) -{ - return 0; -} - - -/* VB functions that do not return "int" (and would cause compiler errors) */ -double Val(char *a) -{ - return 0; -} - -char *Left(char *a, int b) -{ - return 0; -} - -char *left(char *a, int b) -{ - return 0; -} - -char *Right(char *a, int b) -{ - return 0; -} - -char *right(char *a, int b) -{ - return 0; -} - -char *StrReverse(char *a) -{ - return 0; -} - -int InStr(int a, char *b, char *c) -{ - return 0; -} - -char *Dir(char *a) -{ - return 0; -} - -char *Dir_Without_Args() -{ - return 0; -} - -void Kill(char *a) -{ - return; -} - -char *Chr(int a) -{ - return 0; -} - -char *String(int a, char *b) -{ - return 0; -} - -void MkDir(char *a) -{ - return; -} - -char *Hex(int a) -{ - return 0; -} - - -int FileLen(char *a) -{ - return 0; -} -long GetTickCount() -{ - return 0; -} +/* helper functions for constructs not supported by C */ -int GetAttr(char *a) +#if 0 +void *REDIM_1D(int data_size, int first_data_pos, int last_data_pos) { - return 0; -} + /* for a buffer of n elements, first_data_pos is 0 and last_data_pos is n-1 */ + /* a negative value for "first_data_pos" indicates a preceding buffer zone */ -void DoEvents() -{ - return; -} + int data_count = last_data_pos - first_data_pos + 1; + int buffer_size = data_size * data_count; + int buffer_start = data_size * first_data_pos; -void SaveSetting(const char * a, const char *b, char *c, int d) -{ - return; + return (checked_calloc(buffer_size) - buffer_start); } +#endif -long GetTempPath(long a, char *b) +long MyGetTickCount() { - return 0; + return random_linux_libc(RANDOM_SIMPLE); }