-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
71 lines (59 loc) · 1.88 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
To run it on Windows:
- Setup a MySQL database (ex: usbwebserver)
- Import the bin/auth.sql file
- Modify the bin/config.ini file to fit your configuration
- Open AuthServer.exe
- Open Tabula Rasa client
- Log in as test/test
- Nothing more without a game server
==================================
Classes/Namespaces explanation:
DBManager - Handles the DB connection and querys, also validates players
Cryptmanager - Contains the Blowfish and custom algorithms functions
SessionManager - Handles the generation and deletion of sessions
INIParser - Parses the ini file
NetManager - along NetUtils, abstracts socket functions for crossplatfom work
ThreadUtils - Simplifies threads usage
MessageHandler - All the specific logic goes here, handles all the packets
NetObjects - Simplifies the opcode, packet and errors usage
==================================
To compile on Windows (at least in MSVC):
-------------------------------------------
Include folders:
.\libs\minINI
.\libs\pthreads\include
.\libs\mysql
-------------------------------------------
Lib folders:
.\libs\mysql
.\libs\pthreads\lib
-------------------------------------------
Libs
libmysql.lib
ws2_32.lib
pthreadVC2.lib
-------------------------------------------
Preprocessor:
_CRT_SECURE_NO_WARNINGS
INI_ANSIONLY
_TCHAR_DEFINED
==================================
To compile on Linux:
-------------------------------------------
install libmysqlclient-dev
-------------------------------------------
Include folders:
./libs/minINI
`mysql_config --cflags`
-------------------------------------------
Lib folders:
`mysql_config --libs`
==================================
CodeLite project (and makefile) for linux available.
Tested on Debian 7.
==================================
ToDo:
- Check birthday and server age limit
- Maybe commands/interface in the main thread
- Comments
Love, Salsa Crew