diff options
| author | Ray <[email protected]> | 2020-02-20 12:42:37 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-02-20 12:42:37 +0100 |
| commit | e176a476c0abcdd8d7b1b9e369a2548c11d6e0dd (patch) | |
| tree | 83049dda9f445919f851fc7e331b4629b29efe80 /examples/network/network_tcp_server.c | |
| parent | 19390eaf097f2f78b7af188ece92f73388381cb6 (diff) | |
| download | raylib-e176a476c0abcdd8d7b1b9e369a2548c11d6e0dd.tar.gz raylib-e176a476c0abcdd8d7b1b9e369a2548c11d6e0dd.zip | |
[rnet] Review network examples formatting
Diffstat (limited to 'examples/network/network_tcp_server.c')
| -rw-r--r-- | examples/network/network_tcp_server.c | 279 |
1 files changed, 138 insertions, 141 deletions
diff --git a/examples/network/network_tcp_server.c b/examples/network/network_tcp_server.c index e9368726..e47e12cf 100644 --- a/examples/network/network_tcp_server.c +++ b/examples/network/network_tcp_server.c @@ -1,165 +1,162 @@ /*******************************************************************************************
- *
- * raylib [network] example - TCP Server
- *
- * Welcome to raylib!
- *
- * To test examples, just press F6 and execute raylib_compile_execute script
- * Note that compiled executable is placed in the same folder as .c file
- *
- * You can find all basic examples on C:\raylib\raylib\examples folder or
- * raylib official webpage: www.raylib.com
- *
- * Enjoy using raylib. :)
- *
- * This example has been created using raylib 2.0 (www.raylib.com)
- * raylib is licensed under an unmodified zlib/libpng license (View raylib.h
- *for details)
- *
- * Copyright (c) 2013-2016 Ramon Santamaria (@raysan5)
- *
- ********************************************************************************************/
+*
+* raylib [network] example - TCP Server
+*
+* This example has been created using raylib 3.0 (www.raylib.com)
+* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+*
+* Copyright (c) 2019-2020 Jak Barnes (@syphonx) and Ramon Santamaria (@raysan5)
+*
+********************************************************************************************/
#include "raylib.h"
+
+#define RNET_IMPLEMENTATION
#include "rnet.h"
-#include <assert.h>
-#include <stdio.h>
-#include <string.h>
-
-float elapsed = 0.0f;
-float delay = 1.0f;
-bool ping = false;
-bool pong = false;
-bool connected = false;
-const char * pingmsg = "Ping!";
-const char * pongmsg = "Pong!";
-int msglen = 0;
-SocketConfig server_cfg = {.host = "127.0.0.1", .port = "4950", .type = SOCKET_TCP, .server = true, .nonblocking = true};
-SocketConfig connection_cfg = {.nonblocking = true};
-SocketResult *server_res = NULL;
-SocketSet * socket_set = NULL;
-Socket * connection = NULL;
-char recvBuffer[512];
-
-// Attempt to connect to the network (Either TCP, or UDP)
-void NetworkConnect()
+int main(void)
{
- int active = CheckSockets(socket_set, 0);
- if (active != 0) {
- TraceLog(LOG_DEBUG,
- "There are currently %d socket(s) with data to be processed.", active);
- }
- if (active > 0) {
- if ((connection = SocketAccept(server_res->socket, &connection_cfg)) != NULL) {
- AddSocket(socket_set, connection);
- ping = true;
- connected = true;
+ // Initialization
+ //--------------------------------------------------------------------------------------
+ const int screenWidth = 800;
+ const int screenHeight = 450;
+
+ InitWindow(screenWidth, screenHeight, "raylib [network] example - tcp server");
+
+ InitNetworkDevice(); // Init network communications
+
+ const char *pingmsg = "Ping!";
+ const char *pongmsg = "Pong!";
+
+ bool ping = false;
+ bool pong = false;
+ float elapsed = 0.0f;
+ float delay = 1.0f;
+ bool connected = false;
+
+ SocketConfig serverConfig = {
+ .host = "127.0.0.1",
+ .port = "4950",
+ .type = SOCKET_TCP,
+ .server = true,
+ .nonblocking = true
+ };
+
+ SocketConfig connectionConfig = { .nonblocking = true };
+
+ Socket *connection = NULL;
+ SocketSet *socketSet = NULL;
+ SocketResult *serverResult = NULL;
+ char receiveBuffer[512] = { 0 };
+
+ // Create the server: getaddrinfo + socket + setsockopt + bind + listen
+ serverResult = AllocSocketResult();
+ if (!SocketCreate(&serverConfig, serverResult))
+ {
+ TraceLog(LOG_WARNING, "Failed to open server: status %d, errno %d", serverResult->status, serverResult->socket->status);
+ }
+ else
+ {
+ if (!SocketBind(&serverConfig, serverResult))
+ {
+ TraceLog(LOG_WARNING, "Failed to bind server: status %d, errno %d", serverResult->status, serverResult->socket->status);
+ }
+ else
+ {
+ if (!(serverConfig.type == SOCKET_UDP))
+ {
+ if (!SocketListen(&serverConfig, serverResult)) TraceLog(LOG_WARNING, "Failed to start listen server: status %d, errno %d", serverResult->status, serverResult->socket->status);
+ }
}
}
-}
-// Once connected to the network, check the sockets for pending information
-// and when information is ready, send either a Ping or a Pong.
-void NetworkUpdate()
-{
- // CheckSockets
- //
- // If any of the sockets in the socket_set are pending (received data, or requests)
- // then mark the socket as being ready. You can check this with IsSocketReady(client_res->socket)
- int active = CheckSockets(socket_set, 0);
- if (active != 0) {
- TraceLog(LOG_DEBUG,
- "There are currently %d socket(s) with data to be processed.", active);
- }
+ // Create and add sockets to the socket set
+ socketSet = AllocSocketSet(2);
+ AddSocket(socketSet, serverResult->socket);
- // IsSocketReady
- //
- // If the socket is ready, attempt to receive data from the socket
- int bytesRecv = 0;
- if (IsSocketReady(connection)) {
- bytesRecv = SocketReceive(connection, recvBuffer, msglen);
- }
+ SetTargetFPS(60); // Set our game to run at 60 frames-per-second
+ //--------------------------------------------------------------------------------------
- // If we received data, was that data a "Ping!" or a "Pong!"
- if (bytesRecv > 0) {
- if (strcmp(recvBuffer, pingmsg) == 0) { pong = true; }
- if (strcmp(recvBuffer, pongmsg) == 0) { ping = true; }
- }
+ // Main game loop
+ while (!WindowShouldClose()) // Detect window close button or ESC key
+ {
+ // Update
+ //----------------------------------------------------------------------------------
+ if (connected)
+ {
+ // Once connected to the network, check the sockets for pending information
+ // and when information is ready, send either a Ping or a Pong.
- // After each delay has expired, send a response "Ping!" for a "Pong!" and vice versa
- elapsed += GetFrameTime();
- if (elapsed > delay) {
- if (ping) {
- ping = false;
- SocketSend(connection, pingmsg, msglen);
- } else if (pong) {
- pong = false;
- SocketSend(connection, pongmsg, msglen);
- }
- elapsed = 0.0f;
- }
-}
+ // CheckSockets, if any of the sockets in the socketSet are pending (received data, or requests)
+ // then mark the socket as being ready. You can check this with IsSocketReady(client_res->socket)
+ int active = CheckSockets(socketSet, 0);
+ if (active != 0) TraceLog(LOG_DEBUG, "There are currently %d socket(s) with data to be processed.", active);
-int main()
-{
- // Setup
- int screenWidth = 800;
- int screenHeight = 450;
- InitWindow(
- screenWidth, screenHeight, "raylib [network] example - tcp server");
- SetTargetFPS(60);
- SetTraceLogLevel(LOG_DEBUG);
-
- // Networking
- InitNetwork();
-
- // Create the server
- //
- // Performs
- // getaddrinfo
- // socket
- // setsockopt
- // bind
- // listen
- server_res = AllocSocketResult();
- if (!SocketCreate(&server_cfg, server_res)) {
- TraceLog(LOG_WARNING, "Failed to open server: status %d, errno %d",
- server_res->status, server_res->socket->status);
- } else {
- if (!SocketBind(&server_cfg, server_res)) {
- TraceLog(LOG_WARNING, "Failed to bind server: status %d, errno %d",
- server_res->status, server_res->socket->status);
- } else {
- if (!(server_cfg.type == SOCKET_UDP)) {
- if (!SocketListen(&server_cfg, server_res)) {
- TraceLog(LOG_WARNING,
- "Failed to start listen server: status %d, errno %d",
- server_res->status, server_res->socket->status);
+ // IsSocketReady, if the socket is ready, attempt to receive data from the socket
+ int bytesRecv = 0;
+ if (IsSocketReady(connection)) bytesRecv = SocketReceive(connection, receiveBuffer, strlen(pingmsg) + 1);
+
+ // If we received data, was that data a "Ping!" or a "Pong!"
+ if (bytesRecv > 0)
+ {
+ if (strcmp(receiveBuffer, pingmsg) == 0) { pong = true; }
+ if (strcmp(receiveBuffer, pongmsg) == 0) { ping = true; }
+ }
+
+ // After each delay has expired, send a response "Ping!" for a "Pong!" and vice versa
+ elapsed += GetFrameTime();
+ if (elapsed > delay)
+ {
+ if (ping)
+ {
+ ping = false;
+ SocketSend(connection, pingmsg, strlen(pingmsg) + 1);
+ }
+ else if (pong)
+ {
+ pong = false;
+ SocketSend(connection, pongmsg, strlen(pingmsg) + 1);
}
+
+ elapsed = 0.0f;
}
}
- }
+ else
+ {
+ // Attempt to connect to the network (Either TCP, or UDP)
+ int active = CheckSockets(socketSet, 0);
+ if (active != 0) TraceLog(LOG_DEBUG, "There are currently %d socket(s) with data to be processed.", active);
- // Create & Add sockets to the socket set
- socket_set = AllocSocketSet(2);
- msglen = strlen(pingmsg) + 1;
- memset(recvBuffer, '\0', sizeof(recvBuffer));
- AddSocket(socket_set, server_res->socket);
+ if (active > 0)
+ {
+ if ((connection = SocketAccept(serverResult->socket, &connectionConfig)) != NULL)
+ {
+ AddSocket(socketSet, connection);
+ connected = true;
+ ping = true;
+ }
+ }
+ }
+ //----------------------------------------------------------------------------------
- // Main game loop
- while (!WindowShouldClose()) {
+ // Draw
+ //----------------------------------------------------------------------------------
BeginDrawing();
- ClearBackground(RAYWHITE);
- if (connected) {
- NetworkUpdate();
- } else {
- NetworkConnect();
- }
+
+ ClearBackground(RAYWHITE);
+
+ // TODO: Draw relevant connection info
+
EndDrawing();
+ //----------------------------------------------------------------------------------
}
- // Cleanup
- CloseWindow();
+ // De-Initialization
+ //--------------------------------------------------------------------------------------
+ CloseNetworkDevice(); // Close network communication
+
+ CloseWindow(); // Close window and OpenGL context
+ //--------------------------------------------------------------------------------------
+
return 0;
}
\ No newline at end of file |
