Thread: Quick question

  1. #1
    & the hat of GPL slaying Thantos's Avatar
    Join Date
    Sep 2001
    Posts
    5,681

    Quick question

    Ok making a cheesy game that I want to be multiplayer.

    Was thinking of storing the data files on a remote computer.

    Question is this: The game is currently in a dos console. I am planning on making it a windows version later one (once I get the basic gameplay how I want it). Is it worth the time/effort to to learn and get sockets or whatnot working in the console or just wait till I make it a window's version?

    Thanks

  2. #2
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    I would wait for the windows version. Sockets are different between DOS and windows, so you will have to do them once for windows, anyway. The question is whether you want to design for DOS when you're going to disregard all that code anyways.

  3. #3
    End Of Line Hammer's Avatar
    Join Date
    Apr 2002
    Posts
    6,231
    >>Sockets are different between DOS and windows
    But are we talking real DOS or a Windows Console? Thantos, which is it? If it's a Windows Console, the socket code is the same in that and a GUI app.
    When all else fails, read the instructions.
    If you're posting code, use code tags: [code] /* insert code here */ [/code]

  4. #4
    & the hat of GPL slaying Thantos's Avatar
    Join Date
    Sep 2001
    Posts
    5,681
    The DOS console you get with Win XP. Its not true dos but I'm not using the "compile for win32" option of dev-c++ ver 4.

    As far as disregarding my cost, I'm guessing that about 85% of the code will be used with little or no modifications.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Very quick math question
    By jverkoey in forum A Brief History of Cprogramming.com
    Replies: 8
    Last Post: 10-26-2005, 11:05 PM
  2. very quick question.
    By Unregistered in forum C++ Programming
    Replies: 7
    Last Post: 07-24-2002, 03:48 AM
  3. quick question
    By Unregistered in forum C++ Programming
    Replies: 5
    Last Post: 07-22-2002, 04:44 AM
  4. Quick Question Regarding Pointers
    By charash in forum C++ Programming
    Replies: 4
    Last Post: 05-04-2002, 11:04 AM
  5. Quick question: exit();
    By Cheeze-It in forum C Programming
    Replies: 6
    Last Post: 08-15-2001, 05:46 PM