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

1615 Commits

Author SHA1 Message Date
ec88d0ae30 Replaced the numeric limits from previous legacy implementation with the one provided by C++11.
Added a few extra constants for numeric limits.
2016-03-22 02:05:50 +02:00
8088ba94c2 Updated the exception system in the main plugin to also include the location in the source files in debug builds.
Moved the functions that extract base types from strings as static functions under the associated type.
Revised some of the base shared code.
Fixed some of the functions in the String library that did not take into account the null terminator.
2016-03-21 22:37:58 +02:00
e3315430ea Minor additions to the SQLite statement time to make certain functions more transparent to the user and also converted most of the code to use curly braces even for single statements. 2016-03-18 12:58:02 +02:00
6f417d60bb Reviewd the host plugin exports to prevent exceptions going outside the exported functions and minor improvements on value casting. 2016-03-18 12:56:48 +02:00
46466930fb Fixed const correctness in Sqrat array. 2016-03-18 12:55:32 +02:00
afc72a0162 Fixed a bug in the command system that did not take into account the null terminator when finding the command separator.
Added the option to retrieve the listener instance of the currently executed command.
Moved several helper functions to where they belong.
2016-03-17 22:06:14 +02:00
ad6aef3637 Remove leftover printf from previous commit. 2016-03-17 09:49:27 +02:00
bbb4c12f9c Fixed a bug in routines that prevented more than one routine to exist in a bucket.
Also added several helper functions to query information about routines.
2016-03-17 09:25:17 +02:00
839c3c3434 Allow the retrieval of the currently executed command from the command system.
Also improve the way errors during the execution are handled and resources are released.
2016-03-16 19:11:42 +02:00
98b2ddfda6 Fix bug in command system when identifiying where the command name ends.
Also add a quick helper function to retrieve the number of existing commands.
2016-03-15 14:12:14 +02:00
acaf826498 Revised the implementation for the command system to be safer in situations that could lead to the destruction of the listener instance while still used.
Also changed the command system to store the commands in a contiguous container since commands are only inserted once and constantly accessed after.
Documented the command listener member functions.
Various other fixes and improvements.
2016-03-15 10:56:00 +02:00
bab8146c89 Fixed a range error in the SQLite plugin when validating column indexes.
Added an extra flush overload to flush all elements in a handled manner.
Prefixed the Server table to not clutter the user space.
2016-03-13 13:39:17 +02:00
a00e8c964f Fixed names of hash functions that were overwriting the hash types. 2016-03-12 22:58:03 +02:00
5c81af5026 Minor changes in the entity types code style. 2016-03-12 22:51:44 +02:00
a5b353b104 Adjusted routine messages to exclude unnecessary details except for places where the script error handler will catch the error location. 2016-03-12 22:51:05 +02:00
f7f5eb82e5 Prevented exceptions from flush handler to propagate outside the loop. 2016-03-12 22:49:25 +02:00
d2f3da1747 Catch exceptions during server callbacks.
Allow routines to safely terminate routines during execution.
Various other fixes and improvements.
2016-03-12 08:47:50 +02:00
d58099461a Updated the plug-in sdk header to work on recent servers. 2016-03-11 23:17:23 +02:00
386c1d5254 Revert hash functions to their previous names. 2016-03-11 21:38:06 +02:00
9ca2c7ca7d Reimplemented the formatted query methods in SQLite connection using a better approach. 2016-03-11 21:07:55 +02:00
3fa7b17bd7 Fixed the SysPath type returning wrong result in test emptiness.
Added the option to build the path as a string using a speciffic style.
2016-03-11 20:52:00 +02:00
f27a195b6f Fixed the INI compilation on Linux by reverting to the original library.
Fixed an infinite loop in the parsing of command specification strings.
Added the option to retrieve common configs with a fall back value if they don't exist.
Few other minor changes.
2016-03-11 20:04:26 +02:00
20ae383c42 Remove duplicate code that converts a buffer to a script string object. 2016-03-11 04:23:59 +02:00
4cac7d2d30 Updated the buffer class to include an optional numeric value to be used as an edit cursor or to mark the used buffer size.
Basic implementation of the system path class and several fuctions to retrieve information about the running system.
2016-03-11 04:14:28 +02:00
58891f1e8b Implemented searching entities by ID and Tag. 2016-03-10 06:18:39 +02:00
70e5f0ba21 Migrated the host module to C++ exceptions as well.
Also enabled the latest C++ revision in the project.
Replaced the Random library with the one provided by C++11.
Implemented a simple AES256 encryption class.
Various other fixes and improvements.
2016-03-10 05:57:13 +02:00
3162221e7f Migrated the XML module to C++ exceptions as well.
Also enabled the latest C++ revision in the project.
Various other fixes and improvements.
2016-02-28 17:39:26 +02:00
47eec5cb10 Removed the forward declarations that got moved into the base module.
Update the sample module to comply with the latest changes.
2016-02-28 17:38:57 +02:00
c8a5593263 Moved several forward declarations to the base module header. 2016-02-28 17:37:55 +02:00
53834fe1d9 Remove the old SqThrow function from the module API. 2016-02-28 16:21:09 +02:00
4c66cfa49d Implemented RAII when modifying the stack before returning to sqrat inside SQLite module.
Also enabled the latest C++ revision in the project.
Various other fixes and improvements.
2016-02-28 16:20:33 +02:00
7f0480c966 Migrated the IRC module to C++ exceptions as well.
Also enabled the latest C++ revision in the project.
Various other fixes and improvements.
2016-02-28 16:17:59 +02:00
8333cc83ce Migrated the INI module to C++ exceptions as well.
Also enabled the latest C++ revision in the project.
Various other fixes and improvements.
2016-02-28 16:16:08 +02:00
331b03028c Switched the SQLite module to use C++ exceptions to fix the Sqrat issues and gain significantly more performance.
Also fixed various other issues in the SQLite module.
2016-02-27 17:53:12 +02:00
8340a5dbc4 Also fixed the Sqrat issue on constructors for irc sessions. 2016-02-27 14:00:02 +02:00
a867bfd84d Fixed various issues with Sqrat thinking the type wasn't registered if an error is thrown in the constructor.
Fixed asserts in connection and statement handles to check the correct property.
Switched various methods to return objects instead of direct types.
Various other fixes and improvements on the SQLite module.
2016-02-27 13:51:14 +02:00
6e7abfc354 Initial untested SQLite module. 2016-02-27 11:57:29 +02:00
f4a11ef825 Separated major non mandatory libraries into their onwn modules.
Consolidated and simplified the module API system.
Various other fixes and improvements.
2016-02-27 11:57:10 +02:00
fa12692490 Implemented the module system. 2016-02-23 17:48:30 +02:00
48406020f8 Implemented formatted messaging on IRC session type.
Duplicate SetDccVersion as property and not just method.
2016-02-23 06:47:02 +02:00
31c151ac63 Documented a few methods in the IRC session and fixed CTCP reply calling wrong function. 2016-02-23 06:00:50 +02:00
bedf03c9cd Implemented the IRC library.
Fixed a bug in the Routine system that caused crashes when constructed with only the first three arguments because it wasn't attached.
Implemented a gentle release of functions to not release them if the reference count is 1.
Adjusted the Routine and Command system to not be necessary to include them in the module core.
Moved the INI and XML libraries into their own namespace.
Various other modifications and fixes.
2016-02-23 05:23:56 +02:00
b6e72e93a2 Incorporated the hash project into the module project. 2016-02-22 22:00:44 +02:00
bda4ecad9c Partial implementation of the xml library. 2016-02-22 09:28:57 +02:00
c7eb4e967d Included the pugixml source into the project. 2016-02-22 09:28:34 +02:00
ef4dda0756 Move the random library to the external directory. 2016-02-22 09:27:20 +02:00
c4f6de2afd Discarded validations already performed by the ini library as wel as a few other minor changes and fixes. 2016-02-22 09:26:52 +02:00
22f1bb5a0c Initial implementation of the ini library. 2016-02-21 15:55:50 +02:00
35d662a02f Minor additions and fixes to the command system. 2016-02-21 10:31:10 +02:00
3d77dfc508 Minor additions and fixes to the string library. 2016-02-21 10:30:47 +02:00