1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-19 16:47:14 +02:00
Commit Graph

275 Commits

Author SHA1 Message Date
0c92601362 Update the module API and merge shared code between modules and host plugin. 2016-06-03 21:26:19 +03:00
423bdfcdab Remove duplicate property from player class. 2016-05-26 08:55:48 +03:00
d8d240285d Fix wrong parameter to format. 2016-05-26 06:57:42 +03:00
7ee5fe2f0c Remove the {fmt} library from the project. Too many compilation issues with it. 2016-05-25 22:47:55 +03:00
ec0a01d976 Remove obsolete files from the library folder. 2016-05-25 21:17:30 +03:00
86a4933525 Release script callbacks properly in main plugin. 2016-05-24 21:36:49 +03:00
f05e562708 Move most of the reload implementation to the central core. 2016-05-24 19:26:43 +03:00
9d254a805c Separate micellaneous functions. 2016-05-24 18:45:50 +03:00
76621cf946 Separate the IO library into smaller sub components.
Merge the INI module with the main plugin IO library.
2016-05-24 18:37:34 +03:00
d7c4d389eb Throw an error if the given player name is invalid. 2016-05-24 08:26:47 +03:00
56970f69c2 Exported more enumerations from teh SDK.
Renamed several existing enumerations for consistency.
2016-05-24 08:18:39 +03:00
f8e845ebd2 Make the function environment optional in global callbacks. 2016-05-24 07:29:35 +03:00
3ed0b22426 Make the function environment optional in entity callbacks. 2016-05-24 07:29:14 +03:00
33790805eb Make the function environment optional in routine callbacks. 2016-05-24 07:24:21 +03:00
75452625cd Enable the reload system in the macros.
Prevent the reload from entering a cyrcular reload when sending plugin commands.
2016-05-24 06:51:40 +03:00
45c5f1129e Get rid of type aliasing warning. 2016-05-24 05:39:54 +03:00
efa578e8a6 Add aliases for color and colour. 2016-05-24 04:59:36 +03:00
82c3fa4439 Update the {fmt} library to fix the colision with C string.h header. 2016-05-23 22:42:49 +03:00
250407feda Minor changes to the LongInt type. 2016-05-23 18:45:21 +03:00
c135d4293e Remove irrelevant argument from the IToF function. 2016-05-23 05:39:32 +03:00
b9b688581b Move routine processing outside the core class. 2016-05-23 03:54:50 +03:00
86297882d5 Implement the custom event functions. 2016-05-23 03:51:44 +03:00
fdd06e8c2e Minor aditions to the system path library.
Fixed small const correctness in remaining typename functions.
Added a flag to block certain format warnings on x64 builds.
2016-05-23 03:34:35 +03:00
6822172f6a Updated the Squirrel and Sqrat libraries to the latest development versions. 2016-05-22 22:51:59 +03:00
f2361a27c3 Untested update to the new plugin API.
Various other changes to the plugin as well.
2016-05-22 06:20:38 +03:00
955aa218f2 Explicitly delete any copy/move operations from the logger class. 2016-04-20 09:24:37 +03:00
1d2a23dd6c Minor changes in the encryption library. 2016-04-20 09:24:04 +03:00
acdf9300b6 Update the type conversion utility to include more types and be more flexible. 2016-04-20 09:23:18 +03:00
1017fc5c1a Fix the digit counting helpers to take into account negative values. 2016-04-14 04:50:44 +03:00
4504ae0550 Remove leftover printf from math library, 2016-04-14 04:44:20 +03:00
be8b631aea Added several functions to the math library to count integer digts and generate floating point numbers from integers. 2016-04-14 04:39:43 +03:00
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.
2016-04-14 03:08:06 +03:00
ea9f60e32c Fix a buffer underflow in the Center function from the string library. 2016-04-03 23:23:01 +03:00
159e2f5929 Fix a posible buffer overflow from the previous commit. 2016-04-03 21:27:57 +03:00
ef27cf3c5f Update the SToB function to convert the string to lowercase first and then perform the comparison. 2016-04-03 21:26:58 +03:00
6f4ea3b06d Also include the lower/upper case conversion functions in the string library. 2016-04-03 21:10:17 +03:00
45f1053f99 Implement the character clasification functions into the string library. 2016-04-03 21:09:49 +03:00
ab3edcfe4d Remove functions that check character class from the shared code.
Expose the remaining floating point comparison functions.
2016-04-03 21:09:08 +03:00
484b6978fb Minor changes in modules and host plugin. 2016-04-02 13:13:32 +03:00
522f6cfd01 Remove legacy casting when packing colors. 2016-04-02 12:33:24 +03:00
dfacd2c86c Reverse the order of the VM and stack top in stack guard. 2016-04-02 12:32:39 +03:00
3a08e17cad Remove duplicate information when warning about command name collisions. 2016-03-29 05:58:12 +03:00
eed7b70374 Helper classes to used CType functions as predicate in algorithms. 2016-03-29 05:39:17 +03:00
7dffcd0f6e Include another alias for retrieving the current architecture. 2016-03-29 05:37:47 +03:00
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. 2016-03-27 22:15:51 +03:00
6647386d30 Forgot to assign the null pointer after destroying components. 2016-03-27 22:14:24 +03:00
71b255e5dc Use the uint64_t type instead of Uint64 when retrieveing serer time to fix an issue on x64 linux. 2016-03-27 19:06:21 +03:00
49c2c46341 Remove extraneous character from printf inside the logger under linux. 2016-03-27 18:56:26 +03:00
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.
2016-03-27 18:55:34 +03:00
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.
2016-03-27 18:54:45 +03:00