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

291 Commits

Author SHA1 Message Date
eb58f59f81 Implemented the sub logging functionality in linux.
The sub logs used the same color as regular logs, instead of a darker/dim text.
2016-06-11 18:01:26 +03:00
e3ecc782ef Fix compile time error in Chrono library.
The get tick count functions were defined as members of the Chrono class.
2016-06-11 17:53:55 +03:00
bc1e7dbde6 Implement the option to specify how many times you want to allow intensive entity events to be forwarded to script callbacks.
Also expose several properties for the vehicle entity type that I forgot about.
2016-06-08 16:53:16 +03:00
6489dfdf08 Fix the command system which would fail on recursive command execution. 2016-06-08 16:26:55 +03:00
221e27e090 Remove implementation of the Decimal time. Not worth the troublem. 2016-06-05 04:28:45 +03:00
3411f7c64b Export basic interaction with the decimal type. 2016-06-05 04:16:42 +03:00
723f6296e2 Minor addition to the Decimal time. 2016-06-05 04:15:55 +03:00
a1af9af0d7 Fix wrong includes left over by the merge of numeric libraries. 2016-06-05 04:15:23 +03:00
17e78b83dd Initial untested implementation of the Decimal type. 2016-06-05 03:54:15 +03:00
07b8a8b4a0 Minor improvements on the LongInt classes. 2016-06-05 03:53:58 +03:00
d42040c9c0 Merge the Random and Math libraries into the Numeric library and organize code a bit. 2016-06-05 00:00:59 +03:00
cce6beb4d5 Fix the exported API for the Chrono library to use unsigned integers. 2016-06-04 23:10:35 +03:00
2aa7e8b7c2 Furher implementation and improvement of the Chrono types and also exposed them to the module API.
Tighten the safety of exported functions to avoid exceptions leaking outside the host plugin.
2016-06-04 22:33:34 +03:00
36c49cd09c Forgot to register the Hash and AES sub libraries from the main Crypt library. 2016-06-04 22:32:08 +03:00
0093bc2dec Implemented and improved more types in the Chrono library. 2016-06-04 19:17:42 +03:00
ba6acb0d19 Implement the Date type. 2016-06-04 11:55:06 +03:00
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