author | Medo <smaxein@googlemail.com> |
Mon, 11 Jun 2012 00:02:17 +0200 | |
changeset 7182 | 076aba32abd3 |
parent 7179 | f84805e6df03 |
child 7224 | 5143861c83bd |
permissions | -rw-r--r-- |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
1 |
#include "ipcconn.h" |
7179
f84805e6df03
Implemented game launching API for the frontlib.
Medo <smaxein@googlemail.com>
parents:
7177
diff
changeset
|
2 |
#include "demo.h" |
f84805e6df03
Implemented game launching API for the frontlib.
Medo <smaxein@googlemail.com>
parents:
7177
diff
changeset
|
3 |
#include "../util/logging.h" |
7177
bf6cf4dd847a
Implemented public API for letting the engine render maps
Medo <smaxein@googlemail.com>
parents:
7175
diff
changeset
|
4 |
#include "../socket.h" |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
5 |
|
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
6 |
#include <string.h> |
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
7 |
#include <stdbool.h> |
7171 | 8 |
#include <stdlib.h> |
9 |
#include <stdio.h> |
|
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
10 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
11 |
/* |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
12 |
* The receive buffer has to be able to hold any message that might be received. Normally |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
13 |
* the messages are at most 256 bytes, but the map preview contains 4097 bytes (4096 for a |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
14 |
* bitmap, 1 for the number of hogs which fit on the map). |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
15 |
* |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
16 |
* We don't need to worry about wasting a few kb though, and I like powers of two... |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
17 |
*/ |
7171 | 18 |
typedef struct _flib_ipcconn { |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
19 |
uint8_t readBuffer[8192]; |
7171 | 20 |
char playerName[256]; |
21 |
||
22 |
int readBufferSize; |
|
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
23 |
|
7171 | 24 |
flib_acceptor acceptor; |
25 |
uint16_t port; |
|
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
26 |
|
7171 | 27 |
flib_tcpsocket sock; |
28 |
flib_vector demoBuffer; |
|
29 |
} _flib_ipcconn; |
|
30 |
||
31 |
flib_ipcconn flib_ipcconn_create(bool recordDemo, const char *localPlayerName) { |
|
32 |
flib_ipcconn result = malloc(sizeof(_flib_ipcconn)); |
|
33 |
flib_acceptor acceptor = flib_acceptor_create(0); |
|
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
34 |
|
7171 | 35 |
if(!result || !acceptor) { |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
36 |
flib_log_e("Can't create ipcconn."); |
7171 | 37 |
free(result); |
38 |
flib_acceptor_close(&acceptor); |
|
39 |
return NULL; |
|
40 |
} |
|
41 |
||
42 |
result->acceptor = acceptor; |
|
43 |
result->sock = NULL; |
|
44 |
result->readBufferSize = 0; |
|
45 |
result->port = flib_acceptor_listenport(acceptor); |
|
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
46 |
|
7171 | 47 |
if(localPlayerName) { |
48 |
strncpy(result->playerName, localPlayerName, 255); |
|
49 |
} else { |
|
50 |
strncpy(result->playerName, "Player", 255); |
|
51 |
} |
|
52 |
||
53 |
if(recordDemo) { |
|
54 |
result->demoBuffer = flib_vector_create(); |
|
55 |
} |
|
56 |
||
7177
bf6cf4dd847a
Implemented public API for letting the engine render maps
Medo <smaxein@googlemail.com>
parents:
7175
diff
changeset
|
57 |
flib_log_i("Started listening for IPC connections on port %u", (unsigned)result->port); |
7171 | 58 |
return result; |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
59 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
60 |
|
7171 | 61 |
uint16_t flib_ipcconn_port(flib_ipcconn ipc) { |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
62 |
if(!ipc) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
63 |
flib_log_e("Call to flib_ipcconn_port with ipc==null"); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
64 |
return 0; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
65 |
} |
7171 | 66 |
return ipc->port; |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
67 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
68 |
|
7171 | 69 |
void flib_ipcconn_destroy(flib_ipcconn *ipcptr) { |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
70 |
if(!ipcptr) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
71 |
flib_log_e("Call to flib_ipcconn_destroy with ipcptr==null"); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
72 |
} else if(*ipcptr) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
73 |
flib_ipcconn ipc = *ipcptr; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
74 |
flib_acceptor_close(&ipc->acceptor); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
75 |
flib_socket_close(&ipc->sock); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
76 |
flib_vector_destroy(&ipc->demoBuffer); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
77 |
free(ipc); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
78 |
*ipcptr = NULL; |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
79 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
80 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
81 |
|
7171 | 82 |
IpcConnState flib_ipcconn_state(flib_ipcconn ipc) { |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
83 |
if(!ipc) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
84 |
flib_log_e("Call to flib_ipcconn_state with ipc==null"); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
85 |
return IPC_NOT_CONNECTED; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
86 |
} else if(ipc->sock) { |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
87 |
return IPC_CONNECTED; |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
88 |
} else if(ipc->acceptor) { |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
89 |
return IPC_LISTENING; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
90 |
} else { |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
91 |
return IPC_NOT_CONNECTED; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
92 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
93 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
94 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
95 |
static bool isMessageReady(flib_ipcconn ipc) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
96 |
return ipc->readBufferSize >= ipc->readBuffer[0]+1; |
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
97 |
} |
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
98 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
99 |
static void receiveToBuffer(flib_ipcconn ipc) { |
7171 | 100 |
if(ipc->sock) { |
101 |
int size = flib_socket_nbrecv(ipc->sock, ipc->readBuffer+ipc->readBufferSize, sizeof(ipc->readBuffer)-ipc->readBufferSize); |
|
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
102 |
if(size>=0) { |
7171 | 103 |
ipc->readBufferSize += size; |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
104 |
} else { |
7171 | 105 |
flib_socket_close(&ipc->sock); |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
106 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
107 |
} |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
108 |
} |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
109 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
110 |
int flib_ipcconn_recv_message(flib_ipcconn ipc, void *data) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
111 |
if(!ipc || !data) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
112 |
flib_log_e("Call to flib_ipcconn_recv_message with ipc==null or data==null"); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
113 |
return -1; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
114 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
115 |
|
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
116 |
if(!isMessageReady(ipc)) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
117 |
receiveToBuffer(ipc); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
118 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
119 |
|
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
120 |
if(isMessageReady(ipc)) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
121 |
if(ipc->demoBuffer) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
122 |
if(flib_demo_record_from_engine(ipc->demoBuffer, ipc->readBuffer, ipc->playerName) < 0) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
123 |
flib_log_w("Stopping demo recording due to an error."); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
124 |
flib_vector_destroy(&ipc->demoBuffer); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
125 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
126 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
127 |
int msgsize = ipc->readBuffer[0]+1; |
7173
7c2eb284f9f1
Frontlib: Work on the callback mechanisms for IPC
Medo <smaxein@googlemail.com>
parents:
7171
diff
changeset
|
128 |
memcpy(data, ipc->readBuffer, msgsize); |
7c2eb284f9f1
Frontlib: Work on the callback mechanisms for IPC
Medo <smaxein@googlemail.com>
parents:
7171
diff
changeset
|
129 |
memmove(ipc->readBuffer, ipc->readBuffer+msgsize, ipc->readBufferSize-msgsize); |
7c2eb284f9f1
Frontlib: Work on the callback mechanisms for IPC
Medo <smaxein@googlemail.com>
parents:
7171
diff
changeset
|
130 |
ipc->readBufferSize -= msgsize; |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
131 |
return msgsize; |
7171 | 132 |
} else if(!ipc->sock && ipc->readBufferSize>0) { |
7177
bf6cf4dd847a
Implemented public API for letting the engine render maps
Medo <smaxein@googlemail.com>
parents:
7175
diff
changeset
|
133 |
flib_log_w("Last message from engine data stream is incomplete (received %u of %u bytes)", (unsigned)ipc->readBufferSize, (unsigned)(ipc->readBuffer[0])+1); |
7171 | 134 |
ipc->readBufferSize = 0; |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
135 |
return -1; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
136 |
} else { |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
137 |
return -1; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
138 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
139 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
140 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
141 |
int flib_ipcconn_recv_map(flib_ipcconn ipc, void *data) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
142 |
if(!ipc || !data) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
143 |
flib_log_e("Call to flib_ipcconn_recv_map with ipc==null or data==null"); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
144 |
return -1; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
145 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
146 |
|
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
147 |
receiveToBuffer(ipc); |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
148 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
149 |
if(ipc->readBufferSize >= IPCCONN_MAPMSG_BYTES) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
150 |
memcpy(data, ipc->readBuffer, IPCCONN_MAPMSG_BYTES); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
151 |
memmove(ipc->readBuffer, ipc->readBuffer+IPCCONN_MAPMSG_BYTES, ipc->readBufferSize-IPCCONN_MAPMSG_BYTES); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
152 |
return IPCCONN_MAPMSG_BYTES; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
153 |
} else { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
154 |
return -1; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
155 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
156 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
157 |
|
7182
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
158 |
static void logSentMsg(const uint8_t *data, size_t len) { |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
159 |
if(flib_log_getLevel() > FLIB_LOGLEVEL_DEBUG) { |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
160 |
size_t msgStart = 0; |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
161 |
while(msgStart < len) { |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
162 |
uint8_t msglen = data[msgStart]; |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
163 |
if(msgStart+msglen < len) { |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
164 |
flib_log_d("[IPC OUT][%03u]%*.*s",(unsigned)msglen, (unsigned)msglen, (unsigned)msglen, data+msgStart+1); |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
165 |
} else { |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
166 |
uint8_t msglen2 = len-msgStart-1; |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
167 |
flib_log_d("[IPC OUT][%03u/%03u]%*.*s",(unsigned)msglen2, (unsigned)msglen, (unsigned)msglen2, (unsigned)msglen2, data+msgStart+1); |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
168 |
} |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
169 |
msgStart += (uint8_t)data[msgStart]+1; |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
170 |
} |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
171 |
} |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
172 |
} |
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
173 |
|
7177
bf6cf4dd847a
Implemented public API for letting the engine render maps
Medo <smaxein@googlemail.com>
parents:
7175
diff
changeset
|
174 |
int flib_ipcconn_send_raw(flib_ipcconn ipc, const void *data, size_t len) { |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
175 |
if(!ipc || (!data && len>0)) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
176 |
flib_log_e("Call to flib_ipcconn_send_raw with ipc==null or data==null"); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
177 |
return -1; |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
178 |
} |
7171 | 179 |
if(!ipc->sock) { |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
180 |
flib_log_w("flib_ipcconn_send_raw: Not connected."); |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
181 |
return -1; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
182 |
} |
7171 | 183 |
|
184 |
if(flib_socket_send(ipc->sock, data, len) == len) { |
|
7182
076aba32abd3
Small improvements to the frontend lib for better debugging
Medo <smaxein@googlemail.com>
parents:
7179
diff
changeset
|
185 |
logSentMsg(data, len); |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
186 |
if(ipc->demoBuffer) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
187 |
if(flib_demo_record_to_engine(ipc->demoBuffer, data, len) < 0) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
188 |
flib_log_w("Stopping demo recording due to an error."); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
189 |
flib_vector_destroy(&ipc->demoBuffer); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
190 |
} |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
191 |
} |
7171 | 192 |
return 0; |
193 |
} else { |
|
194 |
flib_log_w("Failed or incomplete ICP write: engine connection lost."); |
|
195 |
flib_socket_close(&ipc->sock); |
|
196 |
return -1; |
|
197 |
} |
|
198 |
} |
|
199 |
||
200 |
int flib_ipcconn_send_message(flib_ipcconn ipc, void *data, size_t len) { |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
201 |
if(!ipc || (!data && len>0) || len>255) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
202 |
flib_log_e("Call to flib_ipcconn_send_message with ipc==null or data==null or len>255"); |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
203 |
return -1; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
204 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
205 |
|
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
206 |
uint8_t sendbuf[256]; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
207 |
sendbuf[0] = len; |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
208 |
memcpy(sendbuf+1, data, len); |
7171 | 209 |
return flib_ipcconn_send_raw(ipc, sendbuf, len+1); |
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
210 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
211 |
|
7171 | 212 |
int flib_ipcconn_send_messagestr(flib_ipcconn ipc, char *data) { |
213 |
return flib_ipcconn_send_message(ipc, data, strlen(data)); |
|
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
214 |
} |
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
215 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
216 |
void flib_ipcconn_accept(flib_ipcconn ipc) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
217 |
if(!ipc) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
218 |
flib_log_e("Call to flib_ipcconn_accept with ipc==null"); |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
219 |
} else if(!ipc->sock && ipc->acceptor) { |
7171 | 220 |
ipc->sock = flib_socket_accept(ipc->acceptor, true); |
221 |
if(ipc->sock) { |
|
222 |
flib_acceptor_close(&ipc->acceptor); |
|
7158
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
223 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
224 |
} |
a0573014ff4f
Further work on the frontend library, restructuring, ...
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
225 |
} |
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
226 |
|
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
227 |
flib_constbuffer flib_ipcconn_getrecord(flib_ipcconn ipc, bool save) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
228 |
if(!ipc) { |
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
229 |
flib_log_e("Call to flib_ipcconn_getrecord with ipc==null"); |
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
230 |
} |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
231 |
if(!ipc || !ipc->demoBuffer) { |
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
232 |
flib_constbuffer result = {NULL, 0}; |
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
233 |
return result; |
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
234 |
} |
7175
038e3415100a
Added ini reading/writing for game schemes to the frontend lib
Medo <smaxein@googlemail.com>
parents:
7173
diff
changeset
|
235 |
flib_demo_replace_gamemode(flib_vector_as_buffer(ipc->demoBuffer), save ? 'S' : 'D'); |
7171 | 236 |
return flib_vector_as_constbuffer(ipc->demoBuffer); |
7162
fe76d24a25d7
Demo recording for the frontend library
Medo <smaxein@googlemail.com>
parents:
7160
diff
changeset
|
237 |
} |