Search:

Type: Posts; User: s_jsstevens

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    2,271

    I like the update only part of the screen idea....

    I like the update only part of the screen idea. But its all in text, so I would have to use \b and as far as i know that only works if your on the current line. And that could get very messy very...
  2. Replies
    7
    Views
    2,271

    constant refresh

    right now I am working a space invaders type game. The initial screen is read from a text file that looks like

    1111111111111114
    1000000000000014
    1000000000000014
    1000000000000014...
  3. Thread: getch

    by s_jsstevens
    Replies
    13
    Views
    1,972

    The actual code is over 3000 characters , I am...

    The actual code is over 3000 characters , I am just working on the movement system as of now. And right now when I hit the left movement key, it keeps on moving until I change the direction.

    *edit*
  4. Thread: getch

    by s_jsstevens
    Replies
    13
    Views
    1,972

    swoopy has posted the code already.

    swoopy has posted the code already.
  5. Thread: getch

    by s_jsstevens
    Replies
    13
    Views
    1,972

    in other words its acting like a toggle switch...

    in other words its acting like a toggle switch without the off command.
  6. Thread: getch

    by s_jsstevens
    Replies
    13
    Views
    1,972

    kbhit is a step in the right direction. But now...

    kbhit is a step in the right direction. But now if I hit the left key, my ship keeps moving left until I till it to go somewhere else.
  7. Thread: getch

    by s_jsstevens
    Replies
    13
    Views
    1,972

    aside from learning another language, any other...

    aside from learning another language, any other ideas?
  8. Thread: getch

    by s_jsstevens
    Replies
    13
    Views
    1,972

    in visual basic there is a keypress command, does...

    in visual basic there is a keypress command, does C have a similar command that doesnt halt the program?
  9. Thread: getch

    by s_jsstevens
    Replies
    13
    Views
    1,972

    getch

    I am in the process of writing an old invaders game of sorts. When I ran into a problem, I was using


    key = getch ( );
    switch ( key )
    {
    case '4':
    //go left
    break;
  10. Replies
    9
    Views
    1,401

    thanks.. big help

    thanks.. big help
  11. Replies
    9
    Views
    1,401

    and I would make a deck... how?

    and I would make a deck... how?
  12. Replies
    9
    Views
    1,401

    random number

    I am working on my own project that is eventually going to simulate a poker game, and give each player their % of winning.

    But I am a rather new programmer, so I am going to start out small. I am...
  13. SSH Secure Shell to Microsoft Development Environment

    I took a programming course at my college and we used SSH Secure Shell to program in C. It got me really intrested and now I am starting to program at home. Problem is my home computer has Microsoft...
  14. Replies
    8
    Views
    2,800

    you would be suprised on how that does not help.

    you would be suprised on how that does not help.
  15. Replies
    8
    Views
    2,800

    tokstring ( void ) { FILE * input, * east, *...

    tokstring ( void )
    {
    FILE * input, * east, * west;
    char string [ 80 ];
    char token;
    char first;
    char last;
    char team;
    int number;
    int points;
  16. Replies
    8
    Views
    2,800

    forgot, FILE * input, * east, * west; ...

    forgot,

    FILE * input, * east, * west;

    updating post now
  17. Replies
    8
    Views
    2,800

    Ok, I declared string, and I added *'s in the...

    Ok, I declared string, and I added *'s in the declarations. I will update post and errors.
  18. Replies
    8
    Views
    2,800

    seperate function

    I am trying to read from a file that looks like this


    Joseph Stevens Boys 11 20 5
    Jamie Stevens Girls 22 18 6
    Tony Waters Boys 33 22 7
    Sally Smith Girls 44 33 8

    when I read from this file I...
  19. Replies
    3
    Views
    1,304

    you mean just put a * in front of it? Tried...

    you mean just put a * in front of it?

    Tried that and it didnt change the warning messages
  20. Replies
    3
    Views
    1,304

    reading, editing and creating a new file

    My program should at the moment read from a file called input, create two new files called east and west. And then print Roster number x for each player. Right now I am working on how to break up...
  21. Replies
    42
    Views
    7,252

    would you like me to post it somewhere else? ...

    would you like me to post it somewhere else?

    another forum? :-S
  22. Replies
    42
    Views
    7,252

    My program should at the moment read from a file...

    My program should at the moment read from a file called input, create two new files called east and west. And then print Roster number x for each player. Right now I am working on how to break up...
  23. Replies
    42
    Views
    7,252

    and you use strtok how?

    and you use strtok how?
  24. Replies
    42
    Views
    7,252

    Isnt there a way to break up a string into tokens?

    Isnt there a way to break up a string into tokens?
  25. Replies
    42
    Views
    7,252

    how in the heck would you ignore spaces after a...

    how in the heck would you ignore spaces after a space?
Results 1 to 25 of 45
Page 1 of 2 1 2