1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Commit Graph

  • 1017fc5c1a Fix the digit counting helpers to take into account negative values. Sandu Liviu Catalin 2016-04-14 04:50:44 +0300
  • 4504ae0550 Remove leftover printf from math library, Sandu Liviu Catalin 2016-04-14 04:44:20 +0300
  • be8b631aea Added several functions to the math library to count integer digts and generate floating point numbers from integers. Sandu Liviu Catalin 2016-04-14 04:39:43 +0300
  • 25cc612855 Minor changes in the SQLite module comments. Sandu Liviu Catalin 2016-04-14 03:09:12 +0300
  • 4eddf466f2 Various fixes and improvements in the sample module. Sandu Liviu Catalin 2016-04-14 03:08:35 +0300
  • b818a162ee Initial implementation of the standard math library. Implemented utilities to convert between fundamental types. Implemented helper functions to retrieve numeric values from the stack at all costs. Implemented various delegates on the long integer types to mimic the standard types. Moved most of the stack utilities in a separate source. Various other fixes and improvements. Sandu Liviu Catalin 2016-04-14 03:08:06 +0300
  • ea9f60e32c Fix a buffer underflow in the Center function from the string library. Sandu Liviu Catalin 2016-04-03 23:23:01 +0300
  • 159e2f5929 Fix a posible buffer overflow from the previous commit. Sandu Liviu Catalin 2016-04-03 21:27:57 +0300
  • ef27cf3c5f Update the SToB function to convert the string to lowercase first and then perform the comparison. Sandu Liviu Catalin 2016-04-03 21:26:58 +0300
  • 6f4ea3b06d Also include the lower/upper case conversion functions in the string library. Sandu Liviu Catalin 2016-04-03 21:10:17 +0300
  • 45f1053f99 Implement the character clasification functions into the string library. Sandu Liviu Catalin 2016-04-03 21:09:49 +0300
  • ab3edcfe4d Remove functions that check character class from the shared code. Expose the remaining floating point comparison functions. Sandu Liviu Catalin 2016-04-03 21:09:08 +0300
  • 484b6978fb Minor changes in modules and host plugin. Sandu Liviu Catalin 2016-04-02 13:13:32 +0300
  • 04c14f2c6a Minor fixes in the TCC module. Sandu Liviu Catalin 2016-04-02 13:12:52 +0300
  • a947a68256 Fixed excpetion throwing in INI document to that generated corrupted messages because snprintf was used instead of vsnprintf. Revised most of the INI plugin and cleaned code. Sandu Liviu Catalin 2016-04-02 13:09:24 +0300
  • 27fb281805 Fixed excpetion throwing in IRC document to that generated corrupted messages because snprintf was used instead of vsnprintf. Revised most of the IRC plugin and cleaned code. Sandu Liviu Catalin 2016-04-02 12:49:32 +0300
  • 522f6cfd01 Remove legacy casting when packing colors. Sandu Liviu Catalin 2016-04-02 12:33:24 +0300
  • dfacd2c86c Reverse the order of the VM and stack top in stack guard. Sandu Liviu Catalin 2016-04-02 12:32:39 +0300
  • 570b938d7c Use modern include style in shared module header. Sandu Liviu Catalin 2016-04-02 12:32:16 +0300
  • 1c08f33604 Minor changes I that should've been done in previous commits. Sandu Liviu Catalin 2016-04-02 12:31:45 +0300
  • fab15840cb Fixed excpetion throwing in SQLite document to that generated corrupted messages because snprintf was used instead of vsnprintf. Revised most of the SQLite plugin and cleaned code. Sandu Liviu Catalin 2016-04-02 12:11:14 +0300
  • b6466b9181 Fixed excpetion throwing in XML document to that generated corrupted messages because snprintf was used instead of vsnprintf. Revised most of the XML plugin and cleaned code. Sandu Liviu Catalin 2016-04-02 11:04:28 +0300
  • 3a08e17cad Remove duplicate information when warning about command name collisions. Sandu Liviu Catalin 2016-03-29 05:58:12 +0300
  • 3e17710d43 Update the Sample module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:47:11 +0300
  • 47c9d1d3e2 Update the XML module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:47:01 +0300
  • e92f804398 Update the TCC module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:46:52 +0300
  • 3f09a59161 Update the SQLite module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:46:42 +0300
  • a6f615c259 Update the MaxmindDB module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:46:32 +0300
  • 1c23739270 Update the IRC module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:46:09 +0300
  • a96d28ca8a Update the INI module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:46:00 +0300
  • d9051e580c Update the host module project to copy the executable to the plugins directory after compilation. Sandu Liviu Catalin 2016-03-29 05:45:50 +0300
  • eed7b70374 Helper classes to used CType functions as predicate in algorithms. Sandu Liviu Catalin 2016-03-29 05:39:17 +0300
  • 7dffcd0f6e Include another alias for retrieving the current architecture. Sandu Liviu Catalin 2016-03-29 05:37:47 +0300
  • 1a18c3fd78 Fix the TCC module project for windows builds. Sandu Liviu Catalin 2016-03-27 22:27:59 +0300
  • 29da6850e4 Avoid GCC error "array subscript is above array bounds" which probably considers that the unsigned char could underflow and access an element out of the months range. Sandu Liviu Catalin 2016-03-27 22:15:51 +0300
  • 6647386d30 Forgot to assign the null pointer after destroying components. Sandu Liviu Catalin 2016-03-27 22:14:24 +0300
  • d99a265682 Incorporated the TCC project into the module project. Sandu Liviu Catalin 2016-03-27 21:52:44 +0300
  • 0ccac1f0d2 Include the TCC projects into the main workspace. Sandu Liviu Catalin 2016-03-27 21:24:58 +0300
  • 5b52addbe9 Remove extraneous character from printf inside the TCC module. Sandu Liviu Catalin 2016-03-27 21:24:42 +0300
  • 4e0831611a Remove extraneous character from printf inside the MaxmindDB module. Sandu Liviu Catalin 2016-03-27 21:24:31 +0300
  • 4bc4d8bd29 Remove extraneous character from printf inside the Sample module. Sandu Liviu Catalin 2016-03-27 21:23:17 +0300
  • a71726a3aa Remove extraneous character from printf inside the SQLite module. Sandu Liviu Catalin 2016-03-27 21:22:49 +0300
  • 432ae5fd68 Remove extraneous character from printf inside the XML module. Sandu Liviu Catalin 2016-03-27 21:17:16 +0300
  • 6de4d387a9 Remove extraneous character from printf inside the IRC module. Sandu Liviu Catalin 2016-03-27 21:04:04 +0300
  • a2b39933ea Add the config header for the IRC library. Sandu Liviu Catalin 2016-03-27 21:03:24 +0300
  • 0c7ab18700 Remove extraneous character from printf inside the INI module. Sandu Liviu Catalin 2016-03-27 20:50:40 +0300
  • 6c0c09287e Fix null "‘NULL’ was not declared in this scope" error on linux for module API. Sandu Liviu Catalin 2016-03-27 20:49:57 +0300
  • 71b255e5dc Use the uint64_t type instead of Uint64 when retrieveing serer time to fix an issue on x64 linux. Sandu Liviu Catalin 2016-03-27 19:06:21 +0300
  • 49c2c46341 Remove extraneous character from printf inside the logger under linux. Sandu Liviu Catalin 2016-03-27 18:56:26 +0300
  • b8881b0059 Include the header that contains the PATH_MAX on linux in system path library. Move the common typedefs inside the namespace otherwise the character type is not found. Sandu Liviu Catalin 2016-03-27 18:55:34 +0300
  • e0c2c01e25 Include the header that contains the PATH_MAX on linux in system environment library. Use Append string instead of Write string when writing data to a buffer. Remove leftover semicolon in 'else if' statement. Sandu Liviu Catalin 2016-03-27 18:54:45 +0300
  • e70afea7ad Fixed wrong variable name on linux in chrono library. Sandu Liviu Catalin 2016-03-27 18:43:18 +0300
  • 0812472ac5 Forgot to include variable arguments library in shared buffers. Sandu Liviu Catalin 2016-03-27 18:41:10 +0300
  • ac95c019c5 Initial implementation of the TCC module. Sandu Liviu Catalin 2016-03-27 06:06:06 +0300
  • fdbd78cdd1 Added the TCC compiler to the external folder and the associated projects. Sandu Liviu Catalin 2016-03-27 06:05:43 +0300
  • e5525a296a Minor tweak in sqlite module. Remove useless file from sandbox project. Sandu Liviu Catalin 2016-03-27 06:04:45 +0300
  • a4cf2dae85 Added a custom delimiter for time and date and also the option to extract values from strings. Sandu Liviu Catalin 2016-03-26 18:18:41 +0200
  • b5215b38e3 Implement function to retrieve all active vehicles. Sandu Liviu Catalin 2016-03-26 18:17:38 +0200
  • aeba86bddf Implement function to retrieve all active textdraws. Sandu Liviu Catalin 2016-03-26 18:17:31 +0200
  • 5d15342342 Implement function to retrieve all active sprites. Sandu Liviu Catalin 2016-03-26 18:17:21 +0200
  • c79598d843 Implement function to retrieve all active players. Sandu Liviu Catalin 2016-03-26 18:17:12 +0200
  • 1472594c7f Implement function to retrieve all active pickups. Sandu Liviu Catalin 2016-03-26 18:17:05 +0200
  • 6683930250 Implement function to retrieve all active objects. Sandu Liviu Catalin 2016-03-26 18:16:58 +0200
  • 534a582561 Implement function to retrieve all active keybinds. Sandu Liviu Catalin 2016-03-26 18:16:50 +0200
  • 054b4f080e Implement function to retrieve all active forcefields. Sandu Liviu Catalin 2016-03-26 18:16:41 +0200
  • ea9a370471 Implement function to retrieve all active checkpoints. Sandu Liviu Catalin 2016-03-26 18:16:32 +0200
  • 067693d250 Implement function to retrieve all active blips. Sandu Liviu Catalin 2016-03-26 18:16:18 +0200
  • 216ac8bbc0 Use unordered maps for storing script instances and options. Also update some of the code to use braces even for single statements. Sandu Liviu Catalin 2016-03-26 18:16:01 +0200
  • 886e525119 Implement a helper function to clamp a value between the ranges of another type. Sandu Liviu Catalin 2016-03-26 18:14:47 +0200
  • b486ecc2fb Fix the hide object function to calculate the correct coordinates but also implement the raw function. Sandu Liviu Catalin 2016-03-26 18:14:00 +0200
  • f9ef0040c9 Remove leftover includes from previous merge of the time utilities. Sandu Liviu Catalin 2016-03-25 14:43:26 +0200
  • e167a59f83 Merge the time utilities under the chrono library. Sandu Liviu Catalin 2016-03-25 14:28:07 +0200
  • f3af787bad Don't remove immediate routines bucket. Sandu Liviu Catalin 2016-03-25 13:11:21 +0200
  • ad9e02e5fb Update the standard printf function to use the dynamic string retrieval method. Remove leftover includes from the string and crypt libraries. Sandu Liviu Catalin 2016-03-25 02:05:46 +0200
  • c9c0486e9f Remove duplicate code from the Crypt library and use the shared dynamic string argument retrieval. Sandu Liviu Catalin 2016-03-25 02:00:37 +0200
  • 8828c004ca Add the declaration of the functions that return buffers in string library. Sandu Liviu Catalin 2016-03-25 01:54:43 +0200
  • 299bc5ba77 Update the remaining functions from the string library to a more dynamic style. Sandu Liviu Catalin 2016-03-25 01:50:05 +0200
  • 2e3fc1e47e Remove useless code from ToLower function in the string library and also name the shorter alias more appropriately. Sandu Liviu Catalin 2016-03-25 01:44:55 +0200
  • ae5d86e7cf Update most of the helper functions in the string library to allow a more dynamic value retrieval. Various other bug fixes and adjustments. Sandu Liviu Catalin 2016-03-25 01:41:30 +0200
  • addebc61ff Update the names of certain helpers from the string library to be more appropriate. Sandu Liviu Catalin 2016-03-25 00:32:32 +0200
  • f71d0251c9 Added various helper functions to the standard string library. Sandu Liviu Catalin 2016-03-25 00:25:52 +0200
  • e4b93b020a Implemented a helper class to retrieve a string value from the stack as a string or generate a formatted string if necessary. Sandu Liviu Catalin 2016-03-25 00:25:03 +0200
  • 42af986890 Initial implementation of reload mechanism. Sandu Liviu Catalin 2016-03-24 09:32:44 +0200
  • e057f22402 Implement functions to import existing entity instances after loading is complete. Sandu Liviu Catalin 2016-03-24 08:44:01 +0200
  • f5ec4e65ce Also prevent the player entity instance from being destroyed in mid-destruction. Sandu Liviu Catalin 2016-03-24 07:23:01 +0200
  • b877b1701b Don't release the callbacks abruptly in Function destructor. Sandu Liviu Catalin 2016-03-24 06:59:02 +0200
  • ff6cacaf68 Dumb approach to recive some kind of asserts if the program crashes because a component was used after it was deleted. Sandu Liviu Catalin 2016-03-24 06:43:02 +0200
  • 3762b5e2ca Fix the exception code and make it use pooled buffers instead of the common buffer. Sandu Liviu Catalin 2016-03-24 05:30:07 +0200
  • 01bafd7c4f Fix issues in the entity creation and destruction code. Implement a locking mechanism to prevent entities be dstroyed in mid-destruction. Also clean up properly when internal instances are deleted. Sandu Liviu Catalin 2016-03-24 05:28:55 +0200
  • 23617b1493 Remove exceptions from entity creation/destruction if the entity already exists or doesn't at all. Sandu Liviu Catalin 2016-03-24 04:20:33 +0200
  • 9657905586 Remove the SQLite methods that could be used to copy the database to and from memory because it they could crash easilly and didn't make much sense. Sandu Liviu Catalin 2016-03-23 08:24:14 +0200
  • 41f5cfe663 Added options to control the memory allocated for the query queue. Fixed const-correctness in several methods of the SQLite connection. Sandu Liviu Catalin 2016-03-23 05:50:58 +0200
  • 1a312f7e7f Implemented the SQLite transaction class using the RAII pattern. Fixed an issue that generated bad messages for errors that occurred in the formatted query execution method. Minor adjustments throughout the code structure. Sandu Liviu Catalin 2016-03-23 05:43:19 +0200
  • 133bedce50 Dumb implementation of GetTickCount to be revised later if necessary. Sandu Liviu Catalin 2016-03-23 00:49:10 +0200
  • 543f3539fb Updated the MaxmindDB module to include the location for C++ exceptions in source code for debug builds. Sandu Liviu Catalin 2016-03-23 00:27:48 +0200
  • 3a06fe6048 Updated the XML module to include the location for C++ exceptions in source code for debug builds. Sandu Liviu Catalin 2016-03-23 00:26:35 +0200
  • a8edb37733 Updated the IRC module to include the location for C++ exceptions in source code for debug builds. Sandu Liviu Catalin 2016-03-23 00:26:26 +0200
  • 61be27890c Forgot to inlcude the INI entries in the previous commit. Sandu Liviu Catalin 2016-03-23 00:26:16 +0200
  • 9d9ec20fe8 Updated the INI module to include the location for C++ exceptions in source code for debug builds. Sandu Liviu Catalin 2016-03-23 00:25:42 +0200
  • 1398e5a93d Updated the SQLite module to include the location for C++ exceptions in source code for debug builds. Sandu Liviu Catalin 2016-03-23 00:25:32 +0200