Dev - ProkopHapala/SimpleSimulationEngine GitHub Wiki
compilation
for C++ part (like games):
cd cpp mk Build cd Build cmake .. make
for use Code::Blocks
cmake -G "CodeBlocks - Unix Makefiles" ..
networking
- SDL tutorial 25 - networking with SDL_net (send and recv TCP packages) - https://www.youtube.com/watch?v=LNSqqxIKX_k
- FPS game (OpenGL,SDL,C++) tutorial 12 - multiplayer, networking, server - https://www.youtube.com/watch?v=iJfC4-yNnzY
- http://content.gpwiki.org/SDL:Tutorial:Using_SDL_net
- http://www.sdltutorials.com/sdl-net-part-1-user-tutorial
- http://headerphile.com/sdl2/sdl2-part-12-multiplayer/
- http://beej.us/guide/bgnet/output/html/multipage/index.html
- working UDP example in my dropbox
- https://www.dropbox.com/sh/1h88trqs93cfd25/AACrg5VyAQcCrAfHUVG19hbLa?dl=0
- /dropbox/mydevsw/ccko/SDL2/SDL2_net/UDP
serialization
- http://stackoverflow.com/questions/8513202/c-how-to-send-structures-over-socket
- http://stackoverflow.com/questions/1577161/passing-a-structure-through-sockets-in-c
- https://developers.google.com/protocol-buffers/?csw=1
- http://www.boost.org/doc/libs/1_36_0/libs/serialization/example/demo.cpp
- https://github.com/google/protobuf/blob/master/examples/add_person.cc
- http://osdl.sourceforge.net/main/documentation/rendering/SDL-network.html