From: Andriy Shinkarchuck Date: Sun, 24 Jul 2011 16:38:09 +0000 (+0300) Subject: game.c glob.h fx1sin.fat gamma.dat moved to repo. Added license notification X-Git-Url: https://deadsoftware.ru/gitweb?p=flatwaifu.git;a=commitdiff_plain;h=126a5a3ae90b61836d38efc2c5f79441605c1364 game.c glob.h fx1sin.fat gamma.dat moved to repo. Added license notification --- diff --git a/fx1sin.dat b/fx1sin.dat new file mode 100755 index 0000000..8decde5 --- /dev/null +++ b/fx1sin.dat @@ -0,0 +1,32 @@ +0,1608,3215,4821,6423,8022,9616,11204, +12785,14359,15923,17479,19024,20557,22078,23586, +25079,26557,28020,29465,30893,32302,33692,35061, +36409,37736,39039,40319,41575,42806,44011,45189, +46340,47464,48558,49624,50660,51665,52639,53581, +54491,55368,56212,57022,57797,58538,59243,59913, +60547,61144,61705,62228,62714,63162,63571,63943, +64276,64571,64826,65043,65220,65358,65457,65516, +65535,65516,65457,65358,65220,65043,64826,64571, +64276,63943,63571,63162,62714,62228,61705,61144, +60547,59913,59243,58538,57797,57022,56212,55368, +54491,53581,52639,51665,50660,49624,48558,47464, +46340,45189,44011,42806,41575,40319,39039,37736, +36409,35061,33692,32302,30893,29465,28020,26557, +25079,23586,22078,20557,19024,17479,15923,14359, +12785,11204,9616,8022,6423,4821,3215,1608, +0,-1608,-3215,-4821,-6423,-8022,-9616,-11204, +-12785,-14359,-15923,-17479,-19024,-20557,-22078,-23586, +-25079,-26557,-28020,-29465,-30893,-32302,-33692,-35061, +-36409,-37736,-39039,-40319,-41575,-42806,-44011,-45189, +-46340,-47464,-48558,-49624,-50660,-51665,-52639,-53581, +-54491,-55368,-56212,-57022,-57797,-58538,-59243,-59913, +-60547,-61144,-61705,-62228,-62714,-63162,-63571,-63943, +-64276,-64571,-64826,-65043,-65220,-65358,-65457,-65516, +-65535,-65516,-65457,-65358,-65220,-65043,-64826,-64571, +-64276,-63943,-63571,-63162,-62714,-62228,-61705,-61144, +-60547,-59913,-59243,-58538,-57797,-57022,-56212,-55368, +-54491,-53581,-52639,-51665,-50660,-49624,-48558,-47464, +-46340,-45189,-44011,-42806,-41575,-40319,-39039,-37736, +-36409,-35061,-33692,-32302,-30893,-29465,-28020,-26557, +-25079,-23586,-22078,-20557,-19024,-17479,-15923,-14359, +-12785,-11204,-9616,-8022,-6423,-4821,-3215,-1608 diff --git a/game.c b/game.c new file mode 100755 index 0000000..194365e --- /dev/null +++ b/game.c @@ -0,0 +1,547 @@ +/* + Copyright (C) Prikol Software 1996-1997 + Copyright (C) Aleksey Volynskov 1996-1997 + Copyright (C) 2011 + + This file is part of the Doom2D:Rembo project. + + Doom2D:Rembo is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + Doom2D:Rembo is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see or + write to the Free Software Foundation, Inc., + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +#include "glob.h" +#include +#include +#include +#include "files.h" +#include "memory.h" +#include "vga.h" +#include "error.h" +#include "keyb.h" +#include "sound.h" +#include "view.h" +#include "bmap.h" +#include "fx.h" +#include "switch.h" +#include "weapons.h" +#include "items.h" +#include "dots.h" +#include "smoke.h" +#include "player.h" +#include "monster.h" +#include "menu.h" +#include "misc.h" +#include "map.h" + +#include + +#define LT_DELAY 8 +#define LT_HITTIME 6 + +#define GETIME 1092 + + +int A8_start(char*); +int A8_nextframe(void); +void A8_close(void); + + +void FX_trans1(int t); +extern unsigned char fx_scr1[64000],fx_scr2[64000]; + +extern short lastkey; + + +extern int hit_xv,hit_yv; + +extern vgapal std_pal; +void setgamma(int); + +extern int sw_secrets; + +#define PL_FLASH 90 + +extern int PL_JUMP; + +extern map_block_t blk; + +extern byte clrmap[256*12]; + +extern byte cheat; + +byte _2pl=0,g_dm=0,g_st=GS_TITLE,g_exit=0,g_map=1,_warp=0,g_music[8]="MENU"; +byte _net=0; +int g_sttm=1092; +dword g_time; +int dm_pnum,dm_pl1p,dm_pl2p; +pos_t dm_pos[100]; + +static void *telepsnd; +static void *scrnh[3]; +void *cd_scr; + +extern int sky_type; +void *ltn[2][2]; +int lt_time,lt_type,lt_side,lt_ypos,lt_force; +void *ltnsnd[2]; + +int g_trans=0,g_transt; + +static void set_trans(int st) { + switch(g_st) { + case GS_ENDANIM: case GS_END2ANIM: case GS_DARKEN: + case GS_BVIDEO: case GS_EVIDEO: case GS_END3ANIM: + g_st=st;return; + } + switch(g_st=st) { + case GS_ENDANIM: case GS_END2ANIM: case GS_DARKEN: + case GS_BVIDEO: case GS_EVIDEO: case GS_END3ANIM: + return; + } + g_trans=1;g_transt=0; +} + +void G_savegame(FILE* h) { + myfwrite(&_2pl,1,1,h);myfwrite(&g_dm,1,1,h);myfwrite(&g_exit,1,1,h);myfwrite(&g_map,1,1,h); + myfwrite(&g_time,1,4,h);myfwrite(&dm_pl1p,1,4,h);myfwrite(&dm_pl2p,1,4,h); + myfwrite(&dm_pnum,1,4,h);myfwrite(dm_pos,1,dm_pnum*sizeof(pos_t),h); + myfwrite(&cheat,1,1,h); + myfwrite(g_music,1,8,h); +} + +void G_loadgame(FILE* h) { + myfread(&_2pl,1,1,h);myfread(&g_dm,1,1,h);myfread(&g_exit,1,1,h);myfread(&g_map,1,1,h); + myfread(&g_time,1,4,h);myfread(&dm_pl1p,1,4,h);myfread(&dm_pl2p,1,4,h); + myfread(&dm_pnum,1,4,h);myfread(dm_pos,1,dm_pnum*sizeof(pos_t),h); + myfread(&cheat,1,1,h); + myfread(g_music,1,8,h);F_loadmus(g_music); +} + +int G_load(FILE* h) { + switch(blk.t) { + case MB_MUSIC: + myfread(g_music,1,8,h); + if (music_random) F_randmus(g_music); + F_loadmus(g_music); + return 1; + }return 0; +} + +void load_game(int n) { + F_freemus(); + W_init(); + F_loadgame(n); + set_trans(GS_GAME); + V_setscr((g_trans)?fx_scr2:scrbuf);V_setrect(0,SCRW,0,SCRH);//V_setrect(0,320,0,200); + V_clr(0,SCRW,0,SCRH,0);//V_clr(0,320,0,200,0); + if(_2pl) {w_o=0;Z_clrst();w_o=SCRH/2;Z_clrst();}//if(_2pl) {w_o=0;Z_clrst();w_o=100;Z_clrst();} + else {w_o=0;Z_clrst();}//else {w_o=50;Z_clrst();} + V_setscr(scrbuf); + pl1.drawst=0xFF; + if(_2pl) pl2.drawst=0xFF; + BM_remapfld(); + BM_clear(BM_PLR1|BM_PLR2|BM_MONSTER); + BM_mark(&pl1.o,BM_PLR1); + if(_2pl) BM_mark(&pl2.o,BM_PLR2); + MN_mark(); + S_startmusic(music_time); +} + +void G_start(void) { + char s[8]; + + F_freemus(); + sprintf(s,"MAP%02u",(word)g_map); + F_loadmap(s); + set_trans(GS_GAME); + V_setscr((g_trans)?fx_scr2:scrbuf);V_setrect(0,SCRW,0,SCRH);//V_setrect(0,320,0,200); + V_clr(0,SCRW,0,SCRH,0);//V_clr(0,320,0,200,0); + if(_2pl) {w_o=0;Z_clrst();w_o=SCRH/2;Z_clrst();}//if(_2pl) {w_o=0;Z_clrst();w_o=100;Z_clrst();} + else {w_o=0;Z_clrst();}//else {w_o=50;Z_clrst();} + V_setscr(scrbuf); + pl1.drawst=0xFF; + if(_2pl) pl2.drawst=0xFF; + g_exit=0; + itm_rtime=(g_dm)?1092:0; + p_immortal=0;PL_JUMP=10; + g_time=0; + lt_time=1000; + lt_force=1; + if(!_2pl) pl1.lives=3; + BM_remapfld(); + BM_clear(BM_PLR1|BM_PLR2|BM_MONSTER); + BM_mark(&pl1.o,BM_PLR1); + if(_2pl) BM_mark(&pl2.o,BM_PLR2); + MN_mark(); + S_startmusic(music_time); +} + +#define GGAS_TOTAL (MN__LAST-MN_DEMON+16+10) + +void G_init(void) { + int i,j; + char s[9]; + + logo("G_init: настройка ресурсов игры "); + logo_gas(5,GGAS_TOTAL); + telepsnd=Z_getsnd("TELEPT"); + scrnh[0]=M_lock(F_getresid("TITLEPIC")); + scrnh[1]=M_lock(F_getresid("INTERPIC")); + scrnh[2]=M_lock(F_getresid("ENDPIC")); + cd_scr=M_lock(F_getresid("CD1PIC")); + for(i=0;i<2;++i) { + sprintf(s,"LTN%c",i+'1'); + for(j=0;j<2;++j) + ltn[i][j]=Z_getspr(s,j,0,NULL); + } + ltnsnd[0]=Z_getsnd("THUND1"); + ltnsnd[1]=Z_getsnd("THUND2"); + DOT_alloc(); + SMK_alloc(); + FX_alloc(); + WP_alloc(); + IT_alloc(); + SW_alloc(); + PL_alloc(); + MN_alloc(); + Z_initst(); + logo_gas(GGAS_TOTAL,GGAS_TOTAL); + logo("\n"); + GM_init(); + pl1.color=0x70; + pl2.color=0x60; + g_trans=0; +} + +int G_beg_video(void) { +/* + switch(g_map) { + case 3: return A8_start("FALL"); + case 4: return A8_start("KORIDOR"); + case 5: return A8_start("SKULL"); + case 6: return A8_start("TORCHES"); + case 7: return A8_start("CACO"); + case 8: return A8_start("DARTS"); + case 9: return A8_start("FISH"); + case 10: return A8_start("TRAP"); + case 11: return A8_start("JAIL"); + case 12: return A8_start("MMON1"); + case 13: return A8_start("TOWER"); + case 14: return A8_start("SAPOG"); + case 15: return A8_start("SWITCH"); + case 16: return A8_start("ACCEL"); + case 17: return A8_start("MEAT"); + case 18: return A8_start("LEGION"); + case 19: return A8_start("CLOUDS"); + } +*/ + return 0; +} + + +int G_end_video(void) { +/* + switch(g_map) { + case 1: return A8_start("TRUBA"); + case 10: return A8_start("GOTCHA"); + } +*/ + return 0; +} + + +static byte transdraw=0; + +void G_act(void) { + static byte pcnt=0; +/* + if(g_trans) { + if(g_transt==0) { + V_setscr(NULL);memcpy(fx_scr1,scra,64000); + V_setscr(fx_scr2); + transdraw=1;G_draw();transdraw=0; + V_setscr(scrbuf); + } + FX_trans1(g_transt*2); + V_copytoscr(0,320,0,200); + if(++g_transt>32) { + g_trans=0; + } + return; + g_trans=0; + } +*/ g_trans=0; + + + if(g_st==GS_BVIDEO || g_st==GS_EVIDEO) { + if(!A8_nextframe() || lastkey==SDLK_ESCAPE) { + if(lastkey==SDLK_ESCAPE) lastkey=0; + A8_close(); + if(g_st==GS_BVIDEO) G_start(); + else goto inter; + } + V_copytoscr(0,SCRW,0,SCRH);//V_copytoscr(0,320,0,200); + return; + }else if(g_st==GS_ENDANIM || g_st==GS_END2ANIM || g_st==GS_END3ANIM) { + if(!A8_nextframe()) { + switch(g_st) { + case GS_ENDANIM: g_st=GS_DARKEN;break; + case GS_END2ANIM: g_st=GS_END3ANIM;A8_start("KONEC");break; + case GS_END3ANIM: g_st=GS_ENDSCR;lastkey=0;break; + }g_sttm=0;return; + } + V_copytoscr(0,SCRW,0,SCRH);//V_copytoscr(0,320,0,200); + return; + }else if(g_st==GS_DARKEN) { + g_st=GS_END2ANIM;A8_start("CREDITS"); + return; + } + + if(GM_act()) return; + + + + switch(g_st) { + case GS_TITLE: case GS_ENDSCR: + + return; + case GS_INTER: +#ifdef DEMO + if(keys[0x39] || keys[0x1C] || keys[0x9C]) { + set_trans(GS_TITLE); + } +#else + if(keys[SDLK_SPACE] || keys[SDLK_RETURN] || keys[SDLK_KP_ENTER])//if(keys[0x39] || keys[0x1C] || keys[0x9C]) + if(!G_beg_video()) G_start(); else { + g_st=GS_BVIDEO;F_freemus(); + } +#endif + return; + } + + + if(sky_type==2) { + if(lt_time>LT_DELAY || lt_force) { + if(!(rand()&31) || lt_force) { + lt_force=0; + lt_time=-LT_HITTIME; + lt_type=rand()%2; + lt_side=rand()&1; + lt_ypos=rand()&31; + Z_sound(ltnsnd[rand()&1],128); + } + }else ++lt_time; + } + ++g_time; + pl1.hit=0;pl1.hito=-3; + if(_2pl) {pl2.hit=0;pl2.hito=-3;} + G_code(); + + W_act(); + IT_act(); + SW_act(); + if(_2pl) { + if(pcnt) {PL_act(&pl1);PL_act(&pl2);} + else {PL_act(&pl2);PL_act(&pl1);} + pcnt^=1; + }else PL_act(&pl1); + MN_act(); + if(fld_need_remap) BM_remapfld(); + BM_clear(BM_PLR1|BM_PLR2|BM_MONSTER); + BM_mark(&pl1.o,BM_PLR1); + if(_2pl) BM_mark(&pl2.o,BM_PLR2); + MN_mark(); + WP_act(); + DOT_act(); + SMK_act(); + FX_act(); + if(_2pl) { + PL_damage(&pl1);PL_damage(&pl2); + if(!(pl1.f&PLF_PNSND) && pl1.pain) PL_cry(&pl1); + if(!(pl2.f&PLF_PNSND) && pl2.pain) PL_cry(&pl2); + if((pl1.pain-=5) < 0) {pl1.pain=0;pl1.f&=(0xFFFF-PLF_PNSND);} + if((pl2.pain-=5) < 0) {pl2.pain=0;pl2.f&=(0xFFFF-PLF_PNSND);} + }else{ + PL_damage(&pl1); + if(!(pl1.f&PLF_PNSND) && pl1.pain) PL_cry(&pl1); + if((pl1.pain-=5) < 0) {pl1.pain=0;pl1.f&=(0xFFFF-PLF_PNSND);} + } + if(g_exit==1) { + + if(G_end_video()) { + F_freemus(); + g_st=GS_EVIDEO; + return; + } + +inter: + switch(g_map) { + case 19: g_st=GS_ENDANIM;A8_start("FINAL");break; + case 31: case 32: g_map=16;set_trans(GS_INTER);break; + default: ++g_map;set_trans(GS_INTER);break; + } + F_freemus(); + if(g_st==GS_INTER) { + F_loadmus("INTERMUS"); + }else {F_loadmus("\x8a\x8e\x8d\x85\x96\x0");if(mus_vol>0) {S_volumemusic(128);} } + S_startmusic(0); + }else if(g_exit==2) { + switch(g_map) { + case 31: g_map=32;set_trans(GS_INTER);break; + case 32: g_map=16;set_trans(GS_INTER);break; + default: g_map=31;set_trans(GS_INTER);break; + } + F_freemus(); + F_loadmus("INTERMUS"); + S_startmusic(0); + } + +#ifdef DEMO + if(g_dm && g_time>10920) {set_trans(GS_INTER);} +#endif +} + +/* +static void drawview(player_t *p) { + if(p->looky<-50) p->looky=-50; + else if(p->looky>50) p->looky=50; + w_x=p->o.x;w_y=p->o.y-12+p->looky;W_draw();PL_drawst(p); +} +*/ +static void drawview(player_t *p) { + if(p->looky<-SCRH/4) p->looky=-SCRH/4; + else if(p->looky>SCRH/4) p->looky=SCRH/4; + w_x=p->o.x;w_y=p->o.y-12+p->looky; + W_draw(); + PL_drawst(p); +} + +static int get_pu_st(int t) { + if(t>=PL_FLASH) return 1; + if((t/9)&1) return 0; + return 1; +} + +static void pl_info(player_t *p,int y) { + dword t; + + t=p->kills*10920/g_time; + Z_gotoxy(25,y);Z_printbf("KILLS");//Z_gotoxy(25,y);Z_printbf("KILLS"); + Z_gotoxy(25,y+15);Z_printbf("KPM");//Z_gotoxy(25,y+15);Z_printbf("KPM"); + Z_gotoxy(25,y+30);Z_printbf("SECRETS %u / %u",p->secrets,sw_secrets);//Z_gotoxy(25,y+30);Z_printbf("SECRETS %u / %u",p->secrets,sw_secrets); + Z_gotoxy(255,y);Z_printbf("%u",p->kills);//Z_gotoxy(255,y);Z_printbf("%u",p->kills); + Z_gotoxy(255,y+15);Z_printbf("%u.%u",t/10,t%10);//Z_gotoxy(255,y+15);Z_printbf("%u.%u",t/10,t%10); +} + +void G_draw(void) { + int h; + word hr,mn,sc; + + if(g_trans && !transdraw) return; + switch(g_st) { + case GS_ENDANIM: case GS_END2ANIM: case GS_DARKEN: + case GS_BVIDEO: case GS_EVIDEO: case GS_END3ANIM: + return; + case GS_TITLE: + V_center(1);// + V_pic(0,0,scrnh[0]); + V_center(0);// + break; + case GS_ENDSCR: + V_center(1);// + V_clr(0,SCRW,0,SCRH,0);V_pic(0,0,scrnh[2]);//V_clr(0,320,0,200,0);V_pic(0,0,scrnh[2]); + V_center(0);// + break; + case GS_INTER: + V_center(1);// + V_clr(0,SCRW,0,SCRH,0);// + V_pic(0,0,scrnh[1]); + Z_gotoxy(60,20);Z_printbf("LEVEL COMPLETE"); + Z_calc_time(g_time,&hr,&mn,&sc); + Z_gotoxy(115,40);Z_printbf("TIME %u:%02u:%02u",hr,mn,sc); + h=60; + if(_2pl) { + Z_gotoxy(80,h);Z_printbf("PLAYER ONE"); + Z_gotoxy(80,h+70);Z_printbf("PLAYER TWO"); + h+=SCRH/10;//h+=20; + } + pl_info(&pl1,h); + if(_2pl) pl_info(&pl2,h+70); + V_center(0);// + break; + } + V_center(1);// + if(g_st!=GS_GAME) { + if(g_trans) return; + GM_draw(); + V_copytoscr(0,SCRW,0,SCRH);//V_copytoscr(0,320,0,200); + return; + } + V_center(0);// + + if(_2pl) { + w_o=0;WD=SCRW-120;HT=SCRH/2-2;drawview(&pl1);//w_o=0;drawview(&pl1); + w_o=SCRH/2;WD=SCRW-120;HT=SCRH/2-2;drawview(&pl2);//w_o=100;drawview(&pl2); + }else{ + w_o=0;WD=SCRW-120;HT=SCRH-2;drawview(&pl1);//w_o=50;drawview(&pl1); + } + if(g_trans) return; + V_center(1);// + if(GM_draw()) { + pl1.drawst=pl2.drawst=0xFF;//pl1.drawst=pl2.drawst=0; + V_copytoscr(0,SCRW,0,SCRH);//V_copytoscr(0,320,0,200); + return; + } + V_center(0);// + if(pl1.invl) h=get_pu_st(pl1.invl)*6; + else if(pl1.pain<15) h=0; + else if(pl1.pain<35) h=1; + else if(pl1.pain<55) h=2; + else if(pl1.pain<75) h=3; + else if(pl1.pain<95) h=4; + else h=5; + if(h) V_maptoscr(0,SCRW-120,1,(_2pl)?(SCRH/2-2):(SCRH-2),clrmap+h*256);//if(h) V_maptoscr(0,200,(_2pl)?1:51,98,clrmap+h*256); + else V_copytoscr(0,SCRW-120,1,(_2pl)?(SCRH/2-2):(SCRH-2)); //else V_copytoscr(0,200,(_2pl)?1:51,98); + if(pl1.drawst) V_copytoscr(SCRW-120,120,0,_2pl?(SCRH/2):SCRH);//if(pl1.drawst) V_copytoscr(200,120,(_2pl)?0:50,100); + pl1.drawst=0xFF;//pl1.drawst=0; + if(_2pl) { + if(pl2.invl) h=get_pu_st(pl2.invl)*6; + else if(pl2.pain<15) h=0; + else if(pl2.pain<35) h=1; + else if(pl2.pain<55) h=2; + else if(pl2.pain<75) h=3; + else if(pl2.pain<95) h=4; + else h=5; + if(h) V_maptoscr(0,SCRW-120,SCRH/2+1,SCRH/2-2,clrmap+h*256);//if(h) V_maptoscr(0,200,101,98,clrmap+h*256); + else V_copytoscr(0,SCRW-120,SCRH/2+1,SCRH/2-2);//else V_copytoscr(0,200,101,98); + if(pl2.drawst) V_copytoscr(SCRW-120,120,SCRH/2,SCRH/2);//if(pl2.drawst) V_copytoscr(200,120,100,100); + pl2.drawst=0xFF;//pl2.drawst=0; + } +} + +void G_respawn_player(player_t *p) { + int i; + + if(dm_pnum==2) { + if(p==&pl1) i=dm_pl1p^=1; + else i=dm_pl2p^=1; + p->o.x=dm_pos[i].x;p->o.y=dm_pos[i].y;p->d=dm_pos[i].d; + FX_tfog(dm_pos[i].x,dm_pos[i].y);Z_sound(telepsnd,128); + return; + } + do{i=myrand(dm_pnum);}while(i==dm_pl1p || i==dm_pl2p); + p->o.x=dm_pos[i].x;p->o.y=dm_pos[i].y;p->d=dm_pos[i].d; + if(p==&pl1) dm_pl1p=i; else dm_pl2p=i; + FX_tfog(dm_pos[i].x,dm_pos[i].y);Z_sound(telepsnd,128); +} diff --git a/gamma.dat b/gamma.dat new file mode 100755 index 0000000..b40d111 --- /dev/null +++ b/gamma.dat @@ -0,0 +1,5 @@ +{ 0, 1, 2, 3, 4, 4, 6, 7, 8, 9, 9,11,12,13,14,15,16,16,18,18,19,20,22,23,24,25,26,26,28,29,29,31,32,33,33,35,36,37,38,38,39,41,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63}, +{ 0, 2, 3, 5, 6, 8, 9,10,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,31,31,32,33,34,35,36,37,38,39,40,41,42,42,43,44,45,46,47,48,48,49,50,51,52,53,54,54,55,56,57,58,58,59,60,61,62,63}, +{ 0, 3, 6, 8,10,11,13,14,15,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,34,35,36,37,38,39,40,40,41,42,43,44,44,45,46,47,48,48,49,50,51,51,52,53,54,54,55,56,56,57,58,58,59,60,60,61,62,63}, +{ 0, 5, 8,11,13,14,16,17,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,37,38,39,40,41,42,42,43,44,45,45,46,47,47,48,49,49,50,51,51,52,53,53,54,55,55,56,57,57,58,58,59,60,60,61,61,62,63}, +{ 0, 7,11,13,15,17,19,20,22,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,38,39,40,41,41,42,43,44,44,45,46,46,47,48,48,49,50,50,51,52,52,53,53,54,54,55,56,56,57,57,58,58,59,59,60,60,61,61,62,63} diff --git a/glob.h b/glob.h new file mode 100755 index 0000000..771bb41 --- /dev/null +++ b/glob.h @@ -0,0 +1,71 @@ +/* + Copyright (C) Prikol Software 1996-1997 + Copyright (C) Aleksey Volynskov 1996-1997 + Copyright (C) 2011 + + This file is part of the Doom2D:Rembo project. + + Doom2D:Rembo is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + Doom2D:Rembo is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see or + write to the Free Software Foundation, Inc., + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +// Globals + +#ifndef MYGLOB +#define MYGLOB + +#ifndef NULL +#define NULL 0 +#endif + +#define ON 1 +#define OFF 0 +#define TRUE 1 +#define FALSE 0 + +typedef unsigned char byte; +typedef unsigned short word; +typedef unsigned int dword; + +void logo(const char *,...); +void logo_gas(int,int); + +extern int gammaa; +extern int snd_card; +extern int _cpu; + + +#define __MAX_PATH 255 +#define __MAX_DRIVE 50 +#define __MAX_DIR 100 +#define __MAX_FNAME 50 +#define __MAX_EXT 50 + + +#define min(a,b) ((a)<(b)?(a):(b)) +#define max(a,b) ((a)>(b)?(a):(b)) + +#define myrand(a) (rand()%(a)) + +#include +void myfread(void *ptr, size_t n, size_t size, FILE *f); +size_t myfreadc(void *ptr, size_t n, size_t size, FILE *f); +void myfwrite(void *ptr, size_t n, size_t size, FILE *f); + +extern int SCRW; +extern int SCRH; + +#define DELAY 50 + +#endif