Search:

Type: Posts; User: JOsephPataki

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. oops meant computers haha =[[

    oops meant computers haha =[[
  2. Looking for some classes source code.

    where can i get some more source to learn classes? I checked the tutorial here and I only found a small one on circles. I need to learn these things as I hear they will be very useful. thx
  3. great, cut it down to 300k. I've finished...

    great, cut it down to 300k. I've finished everything I wanted to in this game. I think I will make all of these easy games, TTT(already done), connect 4, snake and others. I'll make a new game as...
  4. heh, I just noticed that the library I downloaded...

    heh, I just noticed that the library I downloaded to support PNG, also supports JPEG. That was the original format I downloaded it in and it was only 126k originally..
  5. I got it to compile on release build, but the exe...

    I got it to compile on release build, but the exe still takes up the same amount of space (96k)
  6. I just set active configuration to release and it...

    I just set active configuration to release and it gives me 2 errors that I don't have in debug. It says it can't find a semicolon in SDL_image.h, but I see the line it points to and it does have a...
  7. Anyone have some tips on how to cut down my filesize?

    I noticed my tic-tac-toe game was 700k+ when zipped. It was due to my background bmp which was 900k alone. So I went to libsdl.org and found SDL_image.lib which adds in support for png files. I...
  8. Replies
    2
    Views
    1,149

    dealing with copyrights

    Can someone give me some inmfo dealing with copy rights.

    I just made a game(first graphical game) in sdl. Now for my background I used a wallpaper created at a site(not mine). This site charges...
  9. Replies
    6
    Views
    2,034

    also does anyone have a link to some open source...

    also does anyone have a link to some open source that uses sprites with just :(
  10. Replies
    6
    Views
    2,034

    What will I need to know them for? I was really...

    What will I need to know them for? I was really planning on learning them eventually, but I just got so excited that I finally got to do graphics. I really dont want to do c++ right now =P
  11. Replies
    6
    Views
    2,034

    sprites in SDL

    So someone showed me this link.
    http://cone3d.gamedev.net/cgi-bin/index.pl?page=tutorials/gfxsdl/index
    I do tutorials 1 and 2. Then I get ready for tutorial number 3...
  12. Replies
    4
    Views
    2,286

    ok i got it, it was the differences in the...

    ok i got it, it was the differences in the declaring main. I guess I have to have
    int argc, char *argv[], in my main from now on.

    I guess I will close down this thread now.
  13. Replies
    4
    Views
    2,286

    ahhhhhhhhhhhhhhhhhhhh my dream jsut became a...

    ahhhhhhhhhhhhhhhhhhhh my dream jsut became a nightmare!!!!!!!!!

    #include "SDL.h"

    int main( int argc, char* argv[] )
    {
    // Body of the program goes here.
    return 0;
    }
  14. Replies
    4
    Views
    2,286

    heh, I had actually given up. I was looking how...

    heh, I had actually given up. I was looking how I would use SDL with DevC++ when I saw a post in the libsdl.org newsgroup with the same error as mine. I read this:

    "The linker is looking for the...
  15. Replies
    4
    Views
    2,286

    Update

    I found the real VisualC.zip I was looking for. It had the SDL.dsw. I compiled the 2 projects, and found the files in their debug folders. SDL.dll, SDL.lib, SDLmain.lib. I delete the files in my...
  16. Replies
    4
    Views
    2,286

    Need help setting up SDL with MSVC

    Well I didn't have anywhere else to turn, so i came here. I dont know how many people here have actually worked with SDL, but I'm hoping there are a few of you out there that can help me.

    I...
  17. Replies
    4
    Views
    3,425

    Ok I just had an idea on how I would defeat this...

    Ok I just had an idea on how I would defeat this problem. I would start at 0,0. Then I will check which direction(s) I can move to and move to all possibilities. From each of these new spaces I...
  18. Replies
    4
    Views
    1,995

    I think the reason why it skips is because c =...

    I think the reason why it skips is because c = getchar(); line
    is getting the enter you push after type in the age.

    I just compiled your program and if you enter in the line
    c=getchar();
    twice...
  19. Replies
    4
    Views
    3,425

    Can someone help me with this function. I had it...

    Can someone help me with this function. I had it semi-working earlier. It could navigate certain obstacles. But the way I had it going was it would go right,down,left, then up is last resort. If...
  20. Replies
    4
    Views
    3,425

    hmmmm..

    Thanks for that, but now I am stuck again.

    I've created a little pocket of obstacles at 6,1 6,2 and 7,2

    0 0 0 0 0 0 0 0
    0 0 0 0 0 0 1 0
    0 0 0 0 0 0 1 1
    0 0 0 0 0 0 0 0

    Right now I'm just...
  21. Replies
    4
    Views
    3,425

    Navigating a maze recursively

    Hi I'm trying to teach myself cprogramming. I'm a couple of chapters past recursive and decided to go back and see if I can do this problem from the end of that chapter. This is what I have so far....
  22. Replies
    4
    Views
    2,684

    Change scanf("%c",&operator); to scanf("...

    Change
    scanf("%c",&operator);

    to
    scanf(" %c",&operator);

    I forgot the reason why you do that, but I remember a teacher telling me to do this in a class a few years back. I think its because...
  23. Replies
    5
    Views
    7,461

    Ok I tried to add in what you said to do. With...

    Ok I tried to add in what you said to do.

    With what I came up with I think it can't read the space between the weight and the next name.

    I came up with this:



    while(fgets(buff, sizeof...
  24. Replies
    5
    Views
    7,461

    Well.. I know how to read in the lines, I meant...

    Well.. I know how to read in the lines, I meant how will I check if I reach end of file with the new way? I don't understand how I can use the fgets to check if I'm at end of file if I will now need...
  25. Replies
    5
    Views
    7,461

    Thanks, but I have another question

    This actually isn't for homework, more of trying to teach myself how to program kind of thing...

    Well I used what you gave me and it worked perfectly now, but how would I be able to convert what...
Results 1 to 25 of 28
Page 1 of 2 1 2