mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
83 lines
1.2 KiB
C
83 lines
1.2 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include "gr-sim.h"
|
|
#include "tfv_utils.h"
|
|
#include "tfv_zp.h"
|
|
|
|
#include "tfv_sprites.h"
|
|
#include "tfv_backgrounds.h"
|
|
|
|
/* stats */
|
|
unsigned char level=0;
|
|
unsigned char hp=50,max_hp=100;
|
|
unsigned char limit=2;
|
|
unsigned char money=0,experience=0;
|
|
unsigned char time_hours=0,time_minutes=0;
|
|
unsigned char items1=0xff,items2=0xff;
|
|
unsigned char steps=0;
|
|
|
|
/* location */
|
|
unsigned char map_x=5;
|
|
char tfv_x=15,tfv_y=19;
|
|
unsigned char ground_color;
|
|
|
|
char nameo[9];
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int result;
|
|
|
|
grsim_init();
|
|
|
|
home();
|
|
gr();
|
|
|
|
/* Clear bottom of zero page */
|
|
apple_memset(&ram[0],0,16);
|
|
|
|
/* clear top page0 */
|
|
/* clear top page1 */
|
|
//clear_top(PAGE0);
|
|
//clear_top(PAGE1);
|
|
|
|
/* clear bottom page0 */
|
|
/* clear bottom page1 */
|
|
//clear_bottom(PAGE0);
|
|
//clear_bottom(PAGE1);
|
|
|
|
clear_screens();
|
|
|
|
/* Do Opening */
|
|
opening();
|
|
|
|
/* Title Screen */
|
|
title_loop:
|
|
result=title();
|
|
if (result!=0) goto title_loop;
|
|
|
|
nameo[0]=0;
|
|
|
|
/* Get Name */
|
|
name_screen();
|
|
if (nameo[0]==0) {
|
|
strcpy(nameo,"DEATER");
|
|
}
|
|
|
|
/* Flying */
|
|
home();
|
|
flying();
|
|
|
|
/* World Map */
|
|
world_map();
|
|
|
|
/* Game Over, Man */
|
|
game_over();
|
|
|
|
return 0;
|
|
}
|
|
|