Search:

Type: Posts; User: zdude

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    16
    Views
    3,625

    Can't find that thread. You might wanna try...

    Can't find that thread.

    You might wanna try #include <iostream> if its not there already.

    Also make sure your >> are facing the right direction.

    std::cout << "Hi\n";
    std::cin >> x
  2. Thread: WinAPI on Linux

    by zdude
    Replies
    1
    Views
    4,171

    Yes, GTK+ and QT are the most popular windowing...

    Yes, GTK+ and QT are the most popular windowing APIs.

    winelib is an implementation of the WinAPI on Linux as well.
  3. Replies
    10
    Views
    2,531

    Re: Game Programming Help

    There is no quick way to suddenly be good at making games.

    I'm working on one now using SDL, I'm planning for good features and everything. I've used C for about 2 years and Java for more.

    So...
  4. Thread: Fixing Laptops

    by zdude
    Replies
    5
    Views
    2,405

    Fixing Laptops

    Does anyone know a good resource on fixing laptops? I have one with a busted/loose video card. Its gonna be too hard to pay for it to be fixed so I want to do it myself
  5. Replies
    2
    Views
    1,108

    In any console type 'man functionname' For...

    In any console type 'man functionname'

    For example to get info on the atoi function type

    "man atoi"


    It'll work with any libraries as well, though they usually have HTML documentation...
  6. So basically you just want to design graphics and...

    So basically you just want to design graphics and conceptualize a game, and have someone else do all the work making it. There is almost no chance of that happening. I'm sorry to tell you this, but...
  7. This is because you are probably converting...

    This is because you are probably converting screen types on the fly.

    The only fixes without modifying the code is to set ur computer and all images it uses to 24 bit.
  8. Replies
    2
    Views
    3,264

    Umm, is there a question, topic, discussion or...

    Umm, is there a question, topic, discussion or anything?

    This is just soliciting. Take it off please.
  9. Just a question, what would happen with an inline...

    Just a question, what would happen with an inline recursive function?
  10. Replies
    6
    Views
    1,149

    Quick Header Question

    What header files are the functions min (int, int) and max (int int) in?
  11. Replies
    1
    Views
    1,679

    I have Mandrake too. Its alot easier to...

    I have Mandrake too.

    Its alot easier to install off the CDs.

    Just go to the install software thingy, search for SDL, then install the SDL-devel package.

    If you don't have the CDs try to find...
  12. Replies
    1
    Views
    1,984

    > explosion = LoadSound("sound/explosion.wav");...

    > explosion = LoadSound("sound/explosion.wav");
    The first question is why are you ignoring the return result at present, and how do you propose to return error values with this new interface.

    I...
  13. Replies
    4
    Views
    2,906

    void* Malloc(size_t size) { void* mem =...

    void* Malloc(size_t size)
    {
    void* mem = malloc(size);

    if (mem == 0)
    {
    fprintf(stderr, "Fatal error: Out of memory\n");
    exit(EXIT_FAILURE);
    }
  14. Replies
    5
    Views
    2,540

    No idea. I don't think there really is a way...

    No idea.

    I don't think there really is a way to rate algorithmic complexity.

    In ASM that would be more commands, and in machine code even more.
  15. Replies
    1
    Views
    1,984

    Help me modify my Sound Server

    Ok, I have a "sound server" written in SDL, heres its code:

    sndserv.h:

    #include <SDL/SDL.h>
    #include <stdio.h>
    #include <stdlib.h>
    #define null NULL

    #define MAX_PLAYING_SOUNDS 10
  16. Replies
    4
    Views
    1,888

    C is a good language for games. Transition...

    C is a good language for games.

    Transition from C to C++ is pretty easy if needed.

    In addition to the others mentioned, programmers sometimes use a scripting language for certain tasks. (AI is...
  17. Replies
    22
    Views
    4,353

    Game programmers usually have artists do 3D...

    Game programmers usually have artists do 3D Modeling and etc, however programmers usually make temporary models to fill in the game to allow furthur programming, while the artist models the real...
  18. Replies
    20
    Views
    5,885

    Poll: I think that the main problem with Linux is that...

    I think that the main problem with Linux is that its hard to find it preinstalled. One of the most annoying things to do for me is to install a new OS, even upgrading my friends computer from 98 to...
  19. Replies
    1
    Views
    1,087

    Thanks a ton, that really helped. BTW i know this...

    Thanks a ton, that really helped. BTW i know this is kinda offtopic but does anyone know how to do something like this in Java? I have a project where im comparing computer languages and im also...
  20. Replies
    3
    Views
    1,405

    I tried that before I asked, i only think it...

    I tried that before I asked, i only think it works with exes.
  21. Replies
    3
    Views
    1,405

    Opening text file

    Could someone tell me how to open a text file in notepad, without using the system() command?
  22. Replies
    1
    Views
    1,087

    Timing in Milliseconds

    OK, i need to measure how long it takes to get from the start to the end of a loop in C/C++. I either need to measure in milliseconds or measure how long it takes the console to buffer and output...
  23. Replies
    1
    Views
    1,294

    Comparing Strings

    Ok, i should know this but i can't remember the function



    char name[20] = "Bob";

    if (name == "Bob"){ // Invalid, need real funtion
    printf("true");
    }
  24. Replies
    3
    Views
    1,065

    List of Functions

    Where could I find a list of functions with what header files they're in, with a breif description of how to use them?

    I know some C, just not functions for working on a comp.
  25. Replies
    1
    Views
    1,188

    Error in tutorial?

    I've been looking at the tutorials at http://www.32bits.co.uk/ and i tried to compile the first program and i get errors:

    41 c:\windows\desktop\window.cpp
    ANSI C++ forbids implicit conversion...
Results 1 to 25 of 32
Page 1 of 2 1 2