author | unc0rr |
Sat, 21 Nov 2015 10:04:20 +0300 | |
branch | qmlfrontend |
changeset 11426 | 25e0f427f57e |
parent 11423 | 091149424aa4 |
child 11428 | e045dc60c37e |
permissions | -rw-r--r-- |
10416 | 1 |
#ifndef FLIB_H |
2 |
#define FLIB_H |
|
3 |
||
4 |
#include <stdint.h> |
|
5 |
||
6 |
#ifdef __cplusplus |
|
7 |
extern "C" { |
|
8 |
#endif |
|
9 |
||
10428
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
10 |
enum MessageType { |
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
11 |
MSG_PREVIEW |
10444
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10440
diff
changeset
|
12 |
, MSG_ADDPLAYINGTEAM |
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10440
diff
changeset
|
13 |
, MSG_REMOVEPLAYINGTEAM |
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10440
diff
changeset
|
14 |
, MSG_ADDTEAM |
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10440
diff
changeset
|
15 |
, MSG_REMOVETEAM |
10452
03519fd9f98d
Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents:
10450
diff
changeset
|
16 |
, MSG_TEAMCOLOR |
10951
89a7f617e091
- Move protocol handling events to main thread through qt's main loop
unc0rr
parents:
10896
diff
changeset
|
17 |
, MSG_NETDATA |
11420 | 18 |
, MSG_CONNECTED |
19 |
, MSG_DISCONNECTED |
|
20 |
, MSG_ADDLOBBYCLIENT |
|
21 |
, MSG_REMOVELOBBYCLIENT |
|
22 |
, MSG_LOBBYCHATLINE |
|
11423 | 23 |
, MSG_ADDROOM |
24 |
, MSG_UPDATEROOM |
|
25 |
, MSG_REMOVEROOM |
|
10428
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
26 |
}; |
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
27 |
|
10416 | 28 |
typedef union string255_ |
29 |
{ |
|
30 |
struct { |
|
31 |
unsigned char s[256]; |
|
32 |
}; |
|
33 |
struct { |
|
34 |
unsigned char len; |
|
35 |
unsigned char str[255]; |
|
36 |
}; |
|
37 |
} string255; |
|
38 |
||
10418
091d2c0216c3
Move away from passing shortstrings into C code, now IPC works
unc0rr
parents:
10416
diff
changeset
|
39 |
typedef void RunEngine_t(int argc, const char ** argv); |
10951
89a7f617e091
- Move protocol handling events to main thread through qt's main loop
unc0rr
parents:
10896
diff
changeset
|
40 |
typedef void registerUIMessagesCallback_t(void * context, void (*)(void * context, MessageType mt, const char * msg, uint32_t len)); |
10430 | 41 |
typedef void getPreview_t(); |
10432 | 42 |
typedef void runQuickGame_t(); |
10448 | 43 |
typedef void runLocalGame_t(); |
10450 | 44 |
typedef void resetGameConfig_t(); |
10430 | 45 |
typedef void setSeed_t(const char * seed); |
46 |
typedef char *getSeed_t(); |
|
10612 | 47 |
typedef void setTheme_t(const char * themeName); |
48 |
typedef void setScript_t(const char * scriptName); |
|
10819
57e21f7621b0
Send selected scheme config on engine initialization (WIP)
unc0rr
parents:
10616
diff
changeset
|
49 |
typedef void setScheme_t(const char * schemeName); |
10888 | 50 |
typedef void setAmmo_t(const char * ammoName); |
10424
4be6cd55f1cf
- Get rid of engine's PathPrefix and UserPathPrefix
unc0rr
parents:
10420
diff
changeset
|
51 |
typedef void flibInit_t(const char * localPrefix, const char * userPrefix); |
4be6cd55f1cf
- Get rid of engine's PathPrefix and UserPathPrefix
unc0rr
parents:
10420
diff
changeset
|
52 |
typedef void flibFree_t(); |
10951
89a7f617e091
- Move protocol handling events to main thread through qt's main loop
unc0rr
parents:
10896
diff
changeset
|
53 |
typedef void passNetData_t(const char * data); |
11421 | 54 |
typedef void sendChatLine_t(const char * msg); |
10416 | 55 |
|
10434
1614b13ad35e
Themes model, also add some files I forgot to add previously
unc0rr
parents:
10432
diff
changeset
|
56 |
typedef char **getThemesList_t(); |
1614b13ad35e
Themes model, also add some files I forgot to add previously
unc0rr
parents:
10432
diff
changeset
|
57 |
typedef void freeThemesList_t(char **list); |
10436 | 58 |
typedef uint32_t getThemeIcon_t(char * theme, char * buffer, uint32_t size); |
10434
1614b13ad35e
Themes model, also add some files I forgot to add previously
unc0rr
parents:
10432
diff
changeset
|
59 |
|
10517 | 60 |
typedef char **getScriptsList_t(); |
10616 | 61 |
typedef char **getSchemesList_t(); |
10888 | 62 |
typedef char **getAmmosList_t(); |
10517 | 63 |
|
10440 | 64 |
typedef char **getTeamsList_t(); |
10452
03519fd9f98d
Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents:
10450
diff
changeset
|
65 |
typedef void tryAddTeam_t(const char * teamName); |
03519fd9f98d
Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents:
10450
diff
changeset
|
66 |
typedef void tryRemoveTeam_t(const char * teamName); |
03519fd9f98d
Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents:
10450
diff
changeset
|
67 |
typedef void changeTeamColor_t(const char * teamName, int32_t dir); |
10440 | 68 |
|
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
10888
diff
changeset
|
69 |
typedef void connectOfficialServer_t(); |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
10888
diff
changeset
|
70 |
|
10416 | 71 |
#ifdef __cplusplus |
72 |
} |
|
73 |
#endif |
|
74 |
||
75 |
#endif // FLIB_H |