Search:

Type: Posts; User: guesst

Page 1 of 8 1 2 3 4

Search: Search took 0.01 seconds.

  1. My experience is from watching other indie...

    My experience is from watching other indie developers release their game pre-beta, folks playing it out, getting bored or frustrated with the lack of features that will be in the game but aren't yet....
  2. The only reason I don't want to release the...

    The only reason I don't want to release the sourcecode of the current build publicly is I don't want folks getting frustrated with the lack of user-friendlyness in the game because it's unfinished....
  3. Hey, DWKS, or anyone else, how well does SDL code...

    Hey, DWKS, or anyone else, how well does SDL code mix with Linux? Does it remain pretty cross compatible? Are there any special considerations I need to be aware of?

    Portals are implemented, in...
  4. Oh, they're on. I see 'em. but I got tired of...

    Oh, they're on. I see 'em. but I got tired of trying to nail every one of them down every time I'd take a variable and compare it to size(). I need the XY to be unsigned for bounds checking. So meh....
  5. IIRC your system was Linux. Lemme know if you...

    IIRC your system was Linux. Lemme know if you needed to do anything to get it running. You know me, I like to think that I'm being cross-platform compatible.
  6. The biggest project I've worked on: ASCIIpOrtal

    I don't drop in as much as I once did... which wasn't much. But I wanted to plug my current project which I just got to what I'm calling my final public beta. It's called ASCIIpOrtal. It's Portal, in...
  7. Replies
    6
    Views
    3,033

    Heh, I've always wanted to do something more like...

    Heh, I've always wanted to do something more like this:

    http://www.atariarchives.org/basicgames/showpage.php?page=154
    http://www.atariarchives.org/basicgames/showpage.php?page=155...
  8. Replies
    132
    Views
    721,283

    Sticky: Ya know, this is a good thread, but a little to...

    Ya know, this is a good thread, but a little to slow moving. I mean, 3 years, still sticked, and only 8 pages? I'm gonna throw one out here:

    Operating system: Any
    Compiler: MinGW, but it should...
  9. Replies
    5
    Views
    2,335

    Yeah, but gravity in a game doesn't need to be...

    Yeah, but gravity in a game doesn't need to be accurate. In fact the more games try to simulate realistic physics in a side scroller environment (I'm looking at you 'N') the more I realize how much I...
  10. Replies
    9
    Views
    9,988

    Sigh. Yes mother. Thing is I know how I should...

    Sigh. Yes mother.

    Thing is I know how I should have done it differently, but at this point a global was a cheaper solution. And it works. Besides, I finally found a use for externs.
  11. Replies
    9
    Views
    9,988

    Ah, thank you, thank you, thank you. So like...

    Ah, thank you, thank you, thank you.

    So like this:
    util.h
    #ifndef UTILS_H_INCLUDED
    #define UTILS_H_INCLUDED

    extern int someglobalarray[5];

    int somefuntionthatusesarray(int foo);
  12. Replies
    9
    Views
    9,988

    Wow, this is exactly my problem. Except that...

    Wow, this is exactly my problem.

    Except that I'm not including the CPP file. I'm only including the .h file and it's still giving me the error.

    Unfortunately the error is way too fast to give a...
  13. Replies
    18
    Views
    3,931

    Right. Changing getch for getchar it responded to...

    Right. Changing getch for getchar it responded to the 'enter' character that I had to type after each line by telling me to just type 'a' or 'b'. I probably should have just included conio too, tho...
  14. Replies
    18
    Views
    3,931

    FANTASTIC. I actually loaded it in my compiler...

    FANTASTIC. I actually loaded it in my compiler and there was a small issue with the fact that getch() isn't in stdio, so I switched it to getchar() and it ran fine. Could use a little bit of...
  15. Replies
    18
    Views
    3,931

    You've got a good beginning program here. I...

    You've got a good beginning program here. I congratulate you on getting this far.

    What you want is the same question asked over and over again until you open the door. You need a loop, which is...
  16. Replies
    1
    Views
    4,569

    Changing my user name...

    I guess I'm not allowed to do this myself. Can a moderator change my user name from guesst to Cymon?
  17. Replies
    2
    Views
    3,927

    No, not before every call. Good grief. Just...

    No, not before every call. Good grief. Just before I generate a puzzle.

    And for some reason this morning it's working I can reliably generate puzzles from a code. Figures.
  18. Replies
    2
    Views
    3,927

    srand() no working as expected

    Hey, thanks everyone for being here. I know I don't stop in as often as I should and I hope you'll forgive me for only dropping in when I have a problem. But with questions like this maybe it's...
  19. Replies
    13
    Views
    1,683

    I fell like I'm copping out, but I think for now...

    I fell like I'm copping out, but I think for now I'm just going to do a text file. This project has forced me to learn enough. If someone else wanted to write a PS or RTF function I'll gladly add it...
  20. Replies
    13
    Views
    1,683

    Yeah, I'm getting that. PS may work but it may...

    Yeah, I'm getting that. PS may work but it may not be the best thing.

    Here's what I want. When I was teaching math I used puzzles on the first day to teach the learning process and I wish I would...
  21. Replies
    13
    Views
    1,683

    Hu? Gui interface? No. It's a text interface,...

    Hu? Gui interface? No. It's a text interface, Curses in fact. The only part that needs to be pretty is the file output with the puzzles (and solutions) on it. And at that it only need to be prettier...
  22. Replies
    13
    Views
    1,683

    I could do output with tabs myself but I want...

    I could do output with tabs myself but I want something a bit prettier. Here, lemme spec it out:

    A grid drawn with numbers on it.
    As close to straight C++ as possible. (I'm going to be...
  23. Replies
    13
    Views
    1,683

    Heh. No, it's actually a Curses application. I...

    Heh. No, it's actually a Curses application. I wanted something a little more cross-platform.

    If I were writing it in Win32 what format would you recommend?

    I've got to find out how out write...
  24. Replies
    13
    Views
    1,683

    Outputting a table for print...

    Okay, I want to output something in a grid or table suitable for print, and if possible I want to do so without relying on external libraries.

    My immediate solution is to write HTML to an...
  25. Replies
    2
    Views
    1,020

    Okay, this was a classic example of me...

    Okay, this was a classic example of me programming too late at night and shooting of the question that my fatigue prevented me from seeing.

    I had a line in my recursive function that measured how...
Results 1 to 25 of 180
Page 1 of 8 1 2 3 4