Recent content by dmail

  1. D

    Large online mulitplayer games and game engines

    http://www.garagegames.com/products/torque/tge/features/sourceincluded
  2. D

    Large online mulitplayer games and game engines

    Game engines are mammoth tasks and usually the downfall of many indie projects, for a new comer into games it is also a daunting task which can be avoided by spending a little money on a good engine such as Torque (http://www.garagegames.com/) which also has networking built in. Using tools like...
  3. D

    C/C++ C++ Programming Quiz | Challenge Your Skills with Our Thread-based Quiz

    It uses C to do a job in C++ when it really it shouldn't be used, it uses the dreaded void pointer and a variable argument list. 0)see neutrino's post. 1)It's a bit field. What is the only difference between a struct and a class?
  4. D

    Is metalworking in college a physically demanding task?

    this is correct http://woodworking.about.com/od/glossaries/g/swarf.htm nice link pitty its talking about woodwork lmao. i machined on lathes and mills both cnc and manual for different companies for about 10 years and have never heard it called anything else, infact it was even in my...
  5. D

    Is metalworking in college a physically demanding task?

    not that i know of. google for metal swarf it seems to be universal http://www.google.co.uk/search?q=metal+swarf
  6. D

    What Songs Mention Isaac Newton?

    don' t take this the wrong way, but is there any need to have audio when you will be speaking. from what i have been taught and seen myself this distracts from what is being said.
  7. D

    Is metalworking in college a physically demanding task?

    lmao do you more morf ;)
  8. D

    Is metalworking in college a physically demanding task?

    don't want to correct you, but why not? this is swarf :)
  9. D

    Is metalworking in college a physically demanding task?

    ok if you where ever to do this in the real world then you would use machines(normally), but they are showing you things which you need to know how to do, ie file a block correctly (probably using engineers blue) saw a straight line (not as easy as it sounds) how to use a chisel. etc etc when i...
  10. D

    Sending UDP Packets 0-40: Troubleshooting Tips

    the packets won't be sent back because udp is not a reliable protcol unlike tcp, there is no guarantee that the packet will be received.
  11. D

    How can I fix the library error for SDL on SUSE with KDevelop?

    update: finally got sdl to work after installing slang-devel. ;)
  12. D

    How can I fix the library error for SDL on SUSE with KDevelop?

    ok i couldn't find anybody who could give me a reason or a method of fixing this error so i reinstalled the whole os (drastic i know) and this get rid of that error :) but this means i now get another error :( i have no prob compiling a simple c++ app, but when i try and compile an sdl app...
  13. D

    C/C++ C++: Is this Valid? Wrapper Class Reference Type Conversion

    hmmm i havnt seen this before an can't seem to find anything in stroustrup's book have to got a link to an example or something please thanks. edit. hmmm now i see, sorry about that
  14. D

    C/C++ C++: Is this Valid? Wrapper Class Reference Type Conversion

    hmmm i havnt seen this before an can't seem to find anything in stroustrup's book have to got a link to an example or something please thanks.
  15. D

    C/C++ C++: Is this Valid? Wrapper Class Reference Type Conversion

    class wrapper { private: int &v; public: wrapper(int &value):v(value) {} wrapper& operator=(int value) { v = value; return *this; } // This is the questionable bit: operator wrapper&() { return *this; } }; wrapper make_wrapper(int &value) { return wrapper(value); } template <typename T> void...