Thread: Remake of nintendo Archon.

  1. #1
    Registered User
    Join Date
    Jun 2002
    Posts
    3

    Remake of nintendo Archon.

    I never really made anything in c or c++. I've done BASIC, but nothing special there. I am just about complete with the Archon remake. It is pretty good in my opinion. It was written with the Allegro library. I have a few problems though. I don't believe that it is very optimised. I have a P3 550 and it runs at 50 fps (good)on 16bit color. I tried it on my friends machine, a p2 300, and it ran at 25 fps, which isn't good with the game. I am also afraid of when I upgrade my cpu soon, it will run at 100+ (bad) fps. The game's code is based on how many fps it is getting. I don't know if I'm ready to rip the code apart to make it run on time and not frames after 2 months of building it. The input is pretty poorly written too (i think).

    Main points:
    Will anyone at least look at it to see if they could do any of the following...
    *make animation and input time-based.
    *limit the FPS (would have to do the above first)
    *optimize input code
    *use SDL instead of ALLEGRO, if it would help.
    Contact me if you are interested at even looking at the code.
    Your name would be entered in the credits for doing any one of these things.

    P.S.
    A problem I am also having is art. I am no artist. Most of the images are just giant letters standing for what they are.
    The game is fun though.

  2. #2
    Registered User
    Join Date
    May 2002
    Posts
    317
    Where about in New Jersey? I lived a good bit there. Why don't you just attach the prog?

  3. #3
    Registered User
    Join Date
    Jun 2002
    Posts
    3
    I'd rather just give it out individually, like if someone emails me, I'll send it to them.

  4. #4
    Unregistered
    Guest

    PERHAPS...

    Perhaps just add a global variable for time.. And store the ticks in it. or rater a difference of ticks. Before each game loop, just do an if statement to make sure so much time has passed in order to do any calculations. 2 milliseconds is what you would want for 50 fps. if its only been 1 millisecond, then make it pause for 1 millisecond then continue.

  5. #5
    Registered User
    Join Date
    May 2002
    Posts
    317
    Here is a code snippet that will stay the same for different processor speed:

    Code:
    #include <iostream>
    #include <ctime>
    
    using namespace std;
    
    int main(){
              float secs = 1; //1 second delay
              clock_t delay = secs*CLOCKS_PER_SEC;
              clock_t start = clock();
              while(clock() - start <delay);
              return(0);
    }
    Hope this was of some help.

  6. #6
    Registered User
    Join Date
    Jun 2002
    Posts
    3
    I haven't tried it yet, but I have it saved on my hard drive. I'm going to upgrade my computer- motherboard, cpu, graphics card, and tower. After that, I'll try it. Thanx

    Also, after I finish with the upgrade, I won't be able to play it right, so that'll give me some motivation, maybe I'll redo the whole program's structure. Before I do, it'd help to know if SDL would be faster than ALLEGRO.

    An artist would still be of great help, 24 frames per character, 8 characters per side, plus 4 elemental characters, 3 different arena's, and a few small things like health bars, rocks, and chess board tiles.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Interested in a Nintendo career
    By dxfoo in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 09-27-2008, 03:18 PM
  2. Approved Nintendo Programmer for hire
    By DScoder in forum Projects and Job Recruitment
    Replies: 0
    Last Post: 07-24-2007, 09:24 PM
  3. Tenchu 2 Remake - Camera angle?
    By cboard_member in forum Game Programming
    Replies: 3
    Last Post: 01-02-2007, 09:47 PM
  4. Favorite Nintendo Mascot
    By Yoshi in forum A Brief History of Cprogramming.com
    Replies: 9
    Last Post: 12-19-2001, 09:54 PM
  5. Spectrum Game PC Remake
    By Robert_Ingleby in forum Game Programming
    Replies: 2
    Last Post: 10-19-2001, 06:26 AM