Search:

Type: Posts; User: hahaguy

Search: Search took 0.01 seconds.

  1. Thread: MUD-like gets

    by hahaguy
    Replies
    2
    Views
    1,139

    ncurses seems like a good idea.

    ncurses seems like a good idea.
  2. Thread: MUD-like gets

    by hahaguy
    Replies
    2
    Views
    1,139

    MUD-like gets

    Is there a way that I can print a string while the user is typing, like in MUDs (multi-user dungeons)? (I am using C on Ubuntu Linux)
  3. Replies
    8
    Views
    964

    When using scanf with an integer (z variable...

    When using scanf with an integer (z variable array), you must place an amperstand (&) before it. Like this:
    scanf("%d", &z[i]);
  4. Replies
    7
    Views
    2,211

    typedef struct myStruct { int myStructInt; }...

    typedef struct myStruct {
    int myStructInt;
    } myStruct;


    myStruct test_struct;


    void test_fun(int * myInt) {
    // yadda yadda
  5. Replies
    33
    Views
    3,878

    I recommend trying SDL with C, and then maybe...

    I recommend trying SDL with C, and then maybe after a while (once you have been successful with a few games), start using SDL's OpenGL capabilities (for 3d graphics and enhanced speed).
  6. Replies
    0
    Views
    2,598

    How does this Game Maker-like c program look

    I made this today and I am wondering if there is a better way of making a Game Maker-like game using SDL.


    #include <stdio.h>
    #include <stdlib.h>

    enum entitytype_enum {
    SPRITE = 1,...
Results 1 to 6 of 6