Thread: Game Network Architecture

  1. #1
    Newbie Programmer
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    5

    Game Network Architecture

    Hi! I'm thinking about starting a little multiplayer first person shooter and I was wondering how to split the game's code in 3 parts: the engine, the client and the server (like in Half-Life)? After some thinking I came up with this:
    http://img450.imageshack.us/img450/8770/network3ib.png
    Do you think that will work? If you know where I can find Half-Life's protocol specs, please post a link. Thanks.

  2. #2
    ---
    Join Date
    May 2004
    Posts
    1,379
    I'm not experienced with this sort of thing but it makes sense to me since everyone is going to have the client and the engine on their machine and the server talks to the client which then uses the engine to do what is needed.

  3. #3
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    The server is normally a separate app that just routes messages and runs in the background. So your setup looks correct to me.

  4. #4
    Registered User
    Join Date
    Sep 2004
    Posts
    197
    Actually, most games have both server and client use the underlying engine, and the engine is also broken down. I think one common breakdown I have seen is: Render; Network; Input;Gameplay/Management; Physics(If you have any); and Configuration. Im sure their is alot of abstraction even at that level though, as the Rendering system will also need to do text and GUI. This isn't a small task either.
    If any part of my post is incorrect, please correct me.

    This post is not guarantied to be correct, and is not to be taken as a matter of fact, but of opinion or a guess, unless otherwise noted.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. how do the game engine and the api interact?
    By Shadow12345 in forum Game Programming
    Replies: 9
    Last Post: 12-08-2010, 12:08 AM
  2. Need book to program game into multiplayer...
    By edomingox in forum Game Programming
    Replies: 3
    Last Post: 10-02-2008, 09:26 AM
  3. C# - Building a SCUMM-like game.. questions
    By Iyouboushi in forum Game Programming
    Replies: 0
    Last Post: 05-24-2008, 10:54 PM
  4. my upcoming UNO card game :)
    By Hussain Hani in forum Game Programming
    Replies: 5
    Last Post: 01-24-2008, 01:19 AM
  5. My Maze Game --- A Few Questions
    By TechWins in forum Game Programming
    Replies: 18
    Last Post: 04-24-2002, 11:00 PM