summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Added chat message handler placeholder (still not fully functional).Aaron Marks2005-07-161-2/+8
| | | | | | Updated PostgreSQL SQL support - although there is still problem with primary key being initialized to null. Updated message enumeration.
* Fixed problem with memory expanding in Packet.Aaron Marks2005-07-161-1/+1
| | | | | Server now handles register requests.
* Now compiles in windows, doesn't run though, it exits with code 3Eugenio Favalli2005-07-131-3/+1
|
* Fixed problem with PostgreSQL support (variable was undefined).Aaron Marks2005-07-121-2/+7
| | | | | | Added client/server message type enumerations. Enabled message handling in ConnectionHandler.
* Updated PostgreSQL defines in source to work with updated configure.Aaron Marks2005-06-281-1/+26
| | | | | Added XML configuration loader from tmw.
* Removed debug code and actually use the generated config.h.Huynh Tran2005-06-271-27/+7
|
* Improved Storage APIs and moved debug code to unit tests.Huynh Tran2005-06-211-3/+1
|
* Passwords are now encrypted when creating a new Account, added unit tests ↵Huynh Tran2005-06-191-1/+3
| | | | for the Account class and moved functors into a separate header file for reuse.
* Actually using the new Logger now.Huynh Tran2005-06-191-73/+73
|
* Reworked Storage APIs and reordered operations in DALStorage to match those ↵Huynh Tran2005-06-191-4/+4
| | | | of Storage.
* Moved SQLiteStorage to subclass of Storage, made Storage a singleton andBjørn Lindeijer2005-06-121-41/+21
| | | | | updated SQL tables a bit.
* Added getAccount & getCharacter to storage class. Cleaned up storage code.Aaron Marks2005-05-291-1/+23
| | | | | Added test in main.cpp.
* Updated Storage class (added extra table to database).Aaron Marks2005-05-231-4/+3
| | | | | Misc.
* Remove main.h, added storage class, moved some code to itMateusz Kaduk2005-05-231-42/+33
|
* Adding default tables if sqlite_master table is emptyMateusz Kaduk2005-05-221-5/+31
|
* Added main.h with database reference, opening and closing databaseMateusz Kaduk2005-05-221-0/+18
|
* Updated scripting interface & added some class documentation.Aaron Marks2005-05-101-4/+0
| | | | | | | - Updated Squirrel scripting interface. - Added registerFunction which will register a function for the specified scripting VM.
* Renamed script-sq.* script-squirrel.*.Aaron Marks2005-05-091-4/+24
| | | | | | Renamed ScriptingInterface to Script (to save typing :)). Updated skill tree definition.
* Added logger use in some files that could tell things already.Yohann Ferreira2005-05-081-7/+12
|
* Made use of the logger in the main loop.Yohann Ferreira2005-05-081-3/+11
|
* Made scripting defines slightly cleaner.Aaron Marks2005-04-271-8/+16
| | | | | Changed LivingObject to Being (as that is standard TMW name for it).
* Added basic object definition for reviewal.Aaron Marks2005-04-191-0/+24
| | | | | Added basic scripting interface & Squirrel (squirrel.sf.net).
* Added a bit of listening code.Bjørn Lindeijer2005-04-161-3/+3
|
* Added check for SDL_net to configure.ac, made world clock work and made theBjørn Lindeijer2005-04-141-3/+19
| | | | | | server handle quit message properly (had to init video for events to work). Also reduced CPU load by about 100%, hehe.
* Fixing console output in windowsEugenio Favalli2005-04-091-0/+2
|
* Corrections to syntax, includes, headers and comments. Updated architecture.txtBjørn Lindeijer2005-03-231-0/+9
| | | | | with a distributed approach.
* More complete implementation of startListen and stopListen, told CVS to ignoreBjørn Lindeijer2005-03-211-1/+1
| | | | | | some files and compile fixes (it actually compiles now, just don't expect it to do anything useful)
* Added start of NetSession implementation and basics of initialization, timerBjørn Lindeijer2005-03-191-0/+116
and loop.