Search:

Type: Posts; User: disks86

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,028

    depends

    It depends how big your maps are. If they are really big this won't work but with small enough maps what I would do is just track what map every user is on either by number(int) or name(string/char)....
  2. Thread: Ascii

    by disks86
    Replies
    20
    Views
    2,554

    maybe this will help

    I'm not sure what os your writing for but you would either have to use an os API or use a library that does it for you. At least to the best of my knowledge.


    SHORT GetAsyncKeyState(

    ...
  3. Thread: C++ rounding

    by disks86
    Replies
    9
    Views
    2,575

    try this

    Here this should do the trick for you.


    double myRounder()
    {
    int decimalPlaces = 3; //the number of decimal places to round to.
    double roundableInput = 12.3446; //The number you want to...
  4. Thread: Rad

    by disks86
    Replies
    2
    Views
    1,104

    Thanks I have that on my fedora core install but...

    Thanks I have that on my fedora core install but I never opened it. lol now I feel dumb.
  5. Thread: Rad

    by disks86
    Replies
    2
    Views
    1,104

    Rad

    Hello, Are there any RAD tools for c++. I would like to make a simple gui program but I want it to be cross platform and I want to lay it out wysiwyg style.
    I have been using dev c++ which works...
  6. garbage collection

    It is faster but also more convenient. For example you don't want garbage collection when your program is in the middle of a time sensitive operation. I program in Visual Basic.net in addition to...
  7. Replies
    20
    Views
    2,017

    ?

    I wasn't posting a new topic it was a reply to the above problem. he had a word in this case the name of a variable and he wanted to replace all instances of it in his string even though he set the...
  8. Replies
    20
    Views
    2,017

    regex

    Hello all, I'm pretty new to c++ so correct me where I'm wrong. In vb.net I would use regular expressions to do it. I would make a function that you input the string and a collection of replacments...
  9. Thread: game hashtable

    by disks86
    Replies
    1
    Views
    1,788

    game hashtable

    Hello, I'm pretty new to c++. I have been using it for a little over 3 weeks. I programmed in Visual Basic .net for a few years before that but now I'm trying to break away from microsoft dependance....
Results 1 to 9 of 10