mirror of
https://github.com/libretro/xrick-libretro.git
synced 2024-11-27 02:20:25 +00:00
Cleanups
This commit is contained in:
parent
1e9b8ca4db
commit
4387d7bcf3
@ -62,7 +62,6 @@ typedef signed int S32; /* 32 bits signed */
|
||||
extern void sys_init(int, char **);
|
||||
extern void sys_shutdown(void);
|
||||
extern void sys_panic(char *, ...);
|
||||
extern void sys_printf(char *, ...);
|
||||
extern U32 sys_gettime(void);
|
||||
|
||||
/*
|
||||
|
13
src/e_them.c
13
src/e_them.c
@ -343,8 +343,6 @@ e_them_t2_action2(U8 e)
|
||||
static U16 *sl = (U16 *)&e_them_rndseed;
|
||||
static U16 *sh = (U16 *)&e_them_rndseed + 2;
|
||||
|
||||
/*sys_printf("e_them_t2 ------------------------------\n");*/
|
||||
|
||||
/* latency: if not zero then decrease */
|
||||
if (ent_ents[e].latency > 0) ent_ents[e].latency--;
|
||||
|
||||
@ -353,8 +351,6 @@ e_them_t2_action2(U8 e)
|
||||
|
||||
/* CLIMBING */
|
||||
|
||||
/*sys_printf("e_them_t2 climbing\n");*/
|
||||
|
||||
/* latency: if not zero then return */
|
||||
if (ent_ents[e].latency > 0) return;
|
||||
|
||||
@ -404,8 +400,6 @@ e_them_t2_action2(U8 e)
|
||||
/* NOT CLIMBING */
|
||||
|
||||
climbing_not:
|
||||
/*sys_printf("e_them_t2 climbing NOT\n");*/
|
||||
|
||||
ent_ents[e].flgclmb = FALSE; /* not climbing */
|
||||
|
||||
/* calc new y (falling) and test environment */
|
||||
@ -413,7 +407,6 @@ e_them_t2_action2(U8 e)
|
||||
y = i >> 8;
|
||||
u_envtest(ent_ents[e].x, y, FALSE, &env0, &env1);
|
||||
if (!(env1 & (MAP_EFLG_SOLID|MAP_EFLG_SPAD|MAP_EFLG_WAYUP))) {
|
||||
/*sys_printf("e_them_t2 y move OK\n");*/
|
||||
/* can go there */
|
||||
if (env1 & MAP_EFLG_LETHAL) {
|
||||
e_them_gozombie(e);
|
||||
@ -433,13 +426,11 @@ e_them_t2_action2(U8 e)
|
||||
return;
|
||||
}
|
||||
if (((ent_ents[e].x & 0x07) == 0x04) && (y < E_RICK_ENT.y)) {
|
||||
/*sys_printf("e_them_t2 climbing00\n");*/
|
||||
ent_ents[e].flgclmb = TRUE; /* climbing */
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/*sys_printf("e_them_t2 ymove nok or ...\n");*/
|
||||
/* can't go there, or ... */
|
||||
ent_ents[e].y = (ent_ents[e].y & 0xf8) | 0x03; /* align to ground */
|
||||
ent_ents[e].offsy = 0x0100;
|
||||
@ -449,7 +440,6 @@ e_them_t2_action2(U8 e)
|
||||
if ((env1 & MAP_EFLG_CLIMB) &&
|
||||
((ent_ents[e].x & 0x0e) == 0x04) &&
|
||||
(ent_ents[e].y > E_RICK_ENT.y)) {
|
||||
/*sys_printf("e_them_t2 climbing01\n");*/
|
||||
ent_ents[e].flgclmb = TRUE; /* climbing */
|
||||
return;
|
||||
}
|
||||
@ -458,14 +448,12 @@ e_them_t2_action2(U8 e)
|
||||
ent_ents[e].sprite = ent_ents[e].sprbase +
|
||||
ent_sprseq[(ent_ents[e].offsx < 0 ? 4 : 0) +
|
||||
((ent_ents[e].x & 0x0e) >> 3)];
|
||||
/*sys_printf("e_them_t2 sprite %02x\n", ent_ents[e].sprite);*/
|
||||
|
||||
|
||||
/* */
|
||||
if (ent_ents[e].offsx == 0)
|
||||
ent_ents[e].offsx = 2;
|
||||
x = ent_ents[e].x + ent_ents[e].offsx;
|
||||
/*sys_printf("e_them_t2 xmove x=%02x\n", x);*/
|
||||
if (x < 0xe8) {
|
||||
u_envtest(x, ent_ents[e].y, FALSE, &env0, &env1);
|
||||
if (!(env1 & (MAP_EFLG_VERT|MAP_EFLG_SOLID|MAP_EFLG_SPAD|MAP_EFLG_WAYUP))) {
|
||||
@ -497,7 +485,6 @@ e_them_t2_action2(U8 e)
|
||||
}
|
||||
|
||||
/* U-turn */
|
||||
/*sys_printf("e_them_t2 u-turn\n");*/
|
||||
if (ent_ents[e].offsx == 0)
|
||||
ent_ents[e].offsx = 2;
|
||||
else
|
||||
|
20
src/ents.c
20
src/ents.c
@ -290,8 +290,6 @@ ent_addrect(S16 x, S16 y, U16 width, U16 height)
|
||||
S16 x0, y0;
|
||||
U16 w0, h0;
|
||||
|
||||
/*sys_printf("rect %#04x,%#04x %#04x %#04x ", x, y, width, height);*/
|
||||
|
||||
/* align to tiles */
|
||||
x0 = x & 0xfff8;
|
||||
y0 = y & 0xfff8;
|
||||
@ -301,12 +299,8 @@ ent_addrect(S16 x, S16 y, U16 width, U16 height)
|
||||
if (y - y0) h0 = (h0 + (y - y0)) | 0x0007;
|
||||
|
||||
/* clip */
|
||||
if (draw_clipms(&x0, &y0, &w0, &h0)) { /* do not add if fully clipped */
|
||||
/*sys_printf("-> [clipped]\n");*/
|
||||
if (draw_clipms(&x0, &y0, &w0, &h0)) /* do not add if fully clipped */
|
||||
return;
|
||||
}
|
||||
|
||||
/*sys_printf("-> %#04x,%#04x %#04x %#04x\n", x0, y0, w0, h0);*/
|
||||
|
||||
#ifdef GFXST
|
||||
y0 += 8;
|
||||
@ -344,8 +338,6 @@ ent_draw(void)
|
||||
rects_free(ent_rects);
|
||||
ent_rects = NULL;
|
||||
|
||||
/*sys_printf("\n");*/
|
||||
|
||||
/*
|
||||
* background loop : erase all entities that were visible
|
||||
*/
|
||||
@ -493,16 +485,6 @@ ent_action(void)
|
||||
{
|
||||
U8 i, k;
|
||||
|
||||
for (i = 0; ent_ents[i].n != 0xff; i++)
|
||||
{
|
||||
if (ent_ents[i].n)
|
||||
{
|
||||
sys_printf("xrick/ents: slot %#04x, entity %#04x", i, ent_ents[i].n);
|
||||
sys_printf(" (%#06x, %#06x), sprite %#04x.\n",
|
||||
ent_ents[i].x, ent_ents[i].y, ent_ents[i].sprite);
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; ent_ents[i].n != 0xff; i++)
|
||||
{
|
||||
if (ent_ents[i].n)
|
||||
|
@ -96,7 +96,6 @@ map_expand(void)
|
||||
void
|
||||
map_init(void)
|
||||
{
|
||||
/*sys_printf("xrick/map_init: map=%#04x submap=%#04x\n", g_map, game_submap);*/
|
||||
#ifdef GFXPC
|
||||
draw_filter = 0xffff;
|
||||
map_tilesBank = (map_submaps[game_submap].page == 1) ? 3 : 2;
|
||||
|
232
src/sdlcodes.e
232
src/sdlcodes.e
@ -1,232 +0,0 @@
|
||||
{"BACKSPACE" , SDLK_BACKSPACE},
|
||||
{"TAB" , SDLK_TAB},
|
||||
{"CLEAR" , SDLK_CLEAR},
|
||||
{"RETURN" , SDLK_RETURN},
|
||||
{"PAUSE" , SDLK_PAUSE},
|
||||
{"ESCAPE" , SDLK_ESCAPE},
|
||||
{"SPACE" , SDLK_SPACE},
|
||||
{"EXCLAIM" , SDLK_EXCLAIM},
|
||||
{"QUOTEDBL" , SDLK_QUOTEDBL},
|
||||
{"HASH" , SDLK_HASH},
|
||||
{"DOLLAR" , SDLK_DOLLAR},
|
||||
{"AMPERSAND" , SDLK_AMPERSAND},
|
||||
{"QUOTE" , SDLK_QUOTE},
|
||||
{"LEFTPAREN" , SDLK_LEFTPAREN},
|
||||
{"RIGHTPAREN" , SDLK_RIGHTPAREN},
|
||||
{"ASTERISK" , SDLK_ASTERISK},
|
||||
{"PLUS" , SDLK_PLUS},
|
||||
{"COMMA" , SDLK_COMMA},
|
||||
{"MINUS" , SDLK_MINUS},
|
||||
{"PERIOD" , SDLK_PERIOD},
|
||||
{"SLASH" , SDLK_SLASH},
|
||||
{"0" , SDLK_0},
|
||||
{"1" , SDLK_1},
|
||||
{"2" , SDLK_2},
|
||||
{"3" , SDLK_3},
|
||||
{"4" , SDLK_4},
|
||||
{"5" , SDLK_5},
|
||||
{"6" , SDLK_6},
|
||||
{"7" , SDLK_7},
|
||||
{"8" , SDLK_8},
|
||||
{"9" , SDLK_9},
|
||||
{"COLON" , SDLK_COLON},
|
||||
{"SEMICOLON" , SDLK_SEMICOLON},
|
||||
{"LESS" , SDLK_LESS},
|
||||
{"EQUALS" , SDLK_EQUALS},
|
||||
{"GREATER" , SDLK_GREATER},
|
||||
{"QUESTION" , SDLK_QUESTION},
|
||||
{"AT" , SDLK_AT},
|
||||
{"LEFTBRACKET" , SDLK_LEFTBRACKET},
|
||||
{"BACKSLASH" , SDLK_BACKSLASH},
|
||||
{"RIGHTBRACKET" , SDLK_RIGHTBRACKET},
|
||||
{"CARET" , SDLK_CARET},
|
||||
{"UNDERSCORE" , SDLK_UNDERSCORE},
|
||||
{"BACKQUOTE" , SDLK_BACKQUOTE},
|
||||
{"a" , SDLK_a},
|
||||
{"b" , SDLK_b},
|
||||
{"c" , SDLK_c},
|
||||
{"d" , SDLK_d},
|
||||
{"e" , SDLK_e},
|
||||
{"f" , SDLK_f},
|
||||
{"g" , SDLK_g},
|
||||
{"h" , SDLK_h},
|
||||
{"i" , SDLK_i},
|
||||
{"j" , SDLK_j},
|
||||
{"k" , SDLK_k},
|
||||
{"l" , SDLK_l},
|
||||
{"m" , SDLK_m},
|
||||
{"n" , SDLK_n},
|
||||
{"o" , SDLK_o},
|
||||
{"p" , SDLK_p},
|
||||
{"q" , SDLK_q},
|
||||
{"r" , SDLK_r},
|
||||
{"s" , SDLK_s},
|
||||
{"t" , SDLK_t},
|
||||
{"u" , SDLK_u},
|
||||
{"v" , SDLK_v},
|
||||
{"w" , SDLK_w},
|
||||
{"x" , SDLK_x},
|
||||
{"y" , SDLK_y},
|
||||
{"z" , SDLK_z},
|
||||
{"DELETE" , SDLK_DELETE},
|
||||
{"WORLD_0" , SDLK_WORLD_0},
|
||||
{"WORLD_1" , SDLK_WORLD_1},
|
||||
{"WORLD_2" , SDLK_WORLD_2},
|
||||
{"WORLD_3" , SDLK_WORLD_3},
|
||||
{"WORLD_4" , SDLK_WORLD_4},
|
||||
{"WORLD_5" , SDLK_WORLD_5},
|
||||
{"WORLD_6" , SDLK_WORLD_6},
|
||||
{"WORLD_7" , SDLK_WORLD_7},
|
||||
{"WORLD_8" , SDLK_WORLD_8},
|
||||
{"WORLD_9" , SDLK_WORLD_9},
|
||||
{"WORLD_10" , SDLK_WORLD_10},
|
||||
{"WORLD_11" , SDLK_WORLD_11},
|
||||
{"WORLD_12" , SDLK_WORLD_12},
|
||||
{"WORLD_13" , SDLK_WORLD_13},
|
||||
{"WORLD_14" , SDLK_WORLD_14},
|
||||
{"WORLD_15" , SDLK_WORLD_15},
|
||||
{"WORLD_16" , SDLK_WORLD_16},
|
||||
{"WORLD_17" , SDLK_WORLD_17},
|
||||
{"WORLD_18" , SDLK_WORLD_18},
|
||||
{"WORLD_19" , SDLK_WORLD_19},
|
||||
{"WORLD_20" , SDLK_WORLD_20},
|
||||
{"WORLD_21" , SDLK_WORLD_21},
|
||||
{"WORLD_22" , SDLK_WORLD_22},
|
||||
{"WORLD_23" , SDLK_WORLD_23},
|
||||
{"WORLD_24" , SDLK_WORLD_24},
|
||||
{"WORLD_25" , SDLK_WORLD_25},
|
||||
{"WORLD_26" , SDLK_WORLD_26},
|
||||
{"WORLD_27" , SDLK_WORLD_27},
|
||||
{"WORLD_28" , SDLK_WORLD_28},
|
||||
{"WORLD_29" , SDLK_WORLD_29},
|
||||
{"WORLD_30" , SDLK_WORLD_30},
|
||||
{"WORLD_31" , SDLK_WORLD_31},
|
||||
{"WORLD_32" , SDLK_WORLD_32},
|
||||
{"WORLD_33" , SDLK_WORLD_33},
|
||||
{"WORLD_34" , SDLK_WORLD_34},
|
||||
{"WORLD_35" , SDLK_WORLD_35},
|
||||
{"WORLD_36" , SDLK_WORLD_36},
|
||||
{"WORLD_37" , SDLK_WORLD_37},
|
||||
{"WORLD_38" , SDLK_WORLD_38},
|
||||
{"WORLD_39" , SDLK_WORLD_39},
|
||||
{"WORLD_40" , SDLK_WORLD_40},
|
||||
{"WORLD_41" , SDLK_WORLD_41},
|
||||
{"WORLD_42" , SDLK_WORLD_42},
|
||||
{"WORLD_43" , SDLK_WORLD_43},
|
||||
{"WORLD_44" , SDLK_WORLD_44},
|
||||
{"WORLD_45" , SDLK_WORLD_45},
|
||||
{"WORLD_46" , SDLK_WORLD_46},
|
||||
{"WORLD_47" , SDLK_WORLD_47},
|
||||
{"WORLD_48" , SDLK_WORLD_48},
|
||||
{"WORLD_49" , SDLK_WORLD_49},
|
||||
{"WORLD_50" , SDLK_WORLD_50},
|
||||
{"WORLD_51" , SDLK_WORLD_51},
|
||||
{"WORLD_52" , SDLK_WORLD_52},
|
||||
{"WORLD_53" , SDLK_WORLD_53},
|
||||
{"WORLD_54" , SDLK_WORLD_54},
|
||||
{"WORLD_55" , SDLK_WORLD_55},
|
||||
{"WORLD_56" , SDLK_WORLD_56},
|
||||
{"WORLD_57" , SDLK_WORLD_57},
|
||||
{"WORLD_58" , SDLK_WORLD_58},
|
||||
{"WORLD_59" , SDLK_WORLD_59},
|
||||
{"WORLD_60" , SDLK_WORLD_60},
|
||||
{"WORLD_61" , SDLK_WORLD_61},
|
||||
{"WORLD_62" , SDLK_WORLD_62},
|
||||
{"WORLD_63" , SDLK_WORLD_63},
|
||||
{"WORLD_64" , SDLK_WORLD_64},
|
||||
{"WORLD_65" , SDLK_WORLD_65},
|
||||
{"WORLD_66" , SDLK_WORLD_66},
|
||||
{"WORLD_67" , SDLK_WORLD_67},
|
||||
{"WORLD_68" , SDLK_WORLD_68},
|
||||
{"WORLD_69" , SDLK_WORLD_69},
|
||||
{"WORLD_70" , SDLK_WORLD_70},
|
||||
{"WORLD_71" , SDLK_WORLD_71},
|
||||
{"WORLD_72" , SDLK_WORLD_72},
|
||||
{"WORLD_73" , SDLK_WORLD_73},
|
||||
{"WORLD_74" , SDLK_WORLD_74},
|
||||
{"WORLD_75" , SDLK_WORLD_75},
|
||||
{"WORLD_76" , SDLK_WORLD_76},
|
||||
{"WORLD_77" , SDLK_WORLD_77},
|
||||
{"WORLD_78" , SDLK_WORLD_78},
|
||||
{"WORLD_79" , SDLK_WORLD_79},
|
||||
{"WORLD_80" , SDLK_WORLD_80},
|
||||
{"WORLD_81" , SDLK_WORLD_81},
|
||||
{"WORLD_82" , SDLK_WORLD_82},
|
||||
{"WORLD_83" , SDLK_WORLD_83},
|
||||
{"WORLD_84" , SDLK_WORLD_84},
|
||||
{"WORLD_85" , SDLK_WORLD_85},
|
||||
{"WORLD_86" , SDLK_WORLD_86},
|
||||
{"WORLD_87" , SDLK_WORLD_87},
|
||||
{"WORLD_88" , SDLK_WORLD_88},
|
||||
{"WORLD_89" , SDLK_WORLD_89},
|
||||
{"WORLD_90" , SDLK_WORLD_90},
|
||||
{"WORLD_91" , SDLK_WORLD_91},
|
||||
{"WORLD_92" , SDLK_WORLD_92},
|
||||
{"WORLD_93" , SDLK_WORLD_93},
|
||||
{"WORLD_94" , SDLK_WORLD_94},
|
||||
{"WORLD_95" , SDLK_WORLD_95},
|
||||
{"KP0" , SDLK_KP0},
|
||||
{"KP1" , SDLK_KP1},
|
||||
{"KP2" , SDLK_KP2},
|
||||
{"KP3" , SDLK_KP3},
|
||||
{"KP4" , SDLK_KP4},
|
||||
{"KP5" , SDLK_KP5},
|
||||
{"KP6" , SDLK_KP6},
|
||||
{"KP7" , SDLK_KP7},
|
||||
{"KP8" , SDLK_KP8},
|
||||
{"KP9" , SDLK_KP9},
|
||||
{"KP_PERIOD" , SDLK_KP_PERIOD},
|
||||
{"KP_DIVIDE" , SDLK_KP_DIVIDE},
|
||||
{"KP_MULTIPLY" , SDLK_KP_MULTIPLY},
|
||||
{"KP_MINUS" , SDLK_KP_MINUS},
|
||||
{"KP_PLUS" , SDLK_KP_PLUS},
|
||||
{"KP_ENTER" , SDLK_KP_ENTER},
|
||||
{"KP_EQUALS" , SDLK_KP_EQUALS},
|
||||
{"UP" , SDLK_UP},
|
||||
{"DOWN" , SDLK_DOWN},
|
||||
{"RIGHT" , SDLK_RIGHT},
|
||||
{"LEFT" , SDLK_LEFT},
|
||||
{"INSERT" , SDLK_INSERT},
|
||||
{"HOME" , SDLK_HOME},
|
||||
{"END" , SDLK_END},
|
||||
{"PAGEUP" , SDLK_PAGEUP},
|
||||
{"PAGEDOWN" , SDLK_PAGEDOWN},
|
||||
{"F1" , SDLK_F1},
|
||||
{"F2" , SDLK_F2},
|
||||
{"F3" , SDLK_F3},
|
||||
{"F4" , SDLK_F4},
|
||||
{"F5" , SDLK_F5},
|
||||
{"F6" , SDLK_F6},
|
||||
{"F7" , SDLK_F7},
|
||||
{"F8" , SDLK_F8},
|
||||
{"F9" , SDLK_F9},
|
||||
{"F10" , SDLK_F10},
|
||||
{"F11" , SDLK_F11},
|
||||
{"F12" , SDLK_F12},
|
||||
{"F13" , SDLK_F13},
|
||||
{"F14" , SDLK_F14},
|
||||
{"F15" , SDLK_F15},
|
||||
{"NUMLOCK" , SDLK_NUMLOCK},
|
||||
{"CAPSLOCK" , SDLK_CAPSLOCK},
|
||||
{"SCROLLOCK" , SDLK_SCROLLOCK},
|
||||
{"RSHIFT" , SDLK_RSHIFT},
|
||||
{"LSHIFT" , SDLK_LSHIFT},
|
||||
{"RCTRL" , SDLK_RCTRL},
|
||||
{"LCTRL" , SDLK_LCTRL},
|
||||
{"RALT" , SDLK_RALT},
|
||||
{"LALT" , SDLK_LALT},
|
||||
{"RMETA" , SDLK_RMETA},
|
||||
{"LMETA" , SDLK_LMETA},
|
||||
{"LSUPER" , SDLK_LSUPER},
|
||||
{"RSUPER" , SDLK_RSUPER},
|
||||
{"MODE" , SDLK_MODE},
|
||||
{"COMPOSE" , SDLK_COMPOSE},
|
||||
{"HELP" , SDLK_HELP},
|
||||
{"PRINT" , SDLK_PRINT},
|
||||
{"SYSREQ" , SDLK_SYSREQ},
|
||||
{"BREAK" , SDLK_BREAK},
|
||||
{"MENU" , SDLK_MENU},
|
||||
{"POWER" , SDLK_POWER},
|
||||
{"EURO" , SDLK_EURO},
|
||||
{"NULL", 0}
|
||||
|
@ -18,8 +18,6 @@
|
||||
#include <stdlib.h> /* atoi */
|
||||
#include <string.h> /* strcasecmp */
|
||||
|
||||
#include <SDL.h>
|
||||
|
||||
#include "system.h"
|
||||
#include "config.h"
|
||||
#include "game.h"
|
||||
|
21
src/system.c
21
src/system.c
@ -45,27 +45,6 @@ sys_panic(char *err, ...)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Print a message
|
||||
*/
|
||||
void
|
||||
sys_printf(char *msg, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
char s[1024];
|
||||
|
||||
/* change stdin to non blocking */
|
||||
/*fcntl(0, F_SETFL, fcntl (0, F_GETFL, 0) & ~FNDELAY);*/
|
||||
/* NOTE HPUX: use ... is it OK on Linux ? */
|
||||
/* fcntl(0, F_SETFL, fcntl (0, F_GETFL, 0) & ~O_NDELAY); */
|
||||
|
||||
/* prepare message */
|
||||
va_start(argptr, msg);
|
||||
vsprintf(s, msg, argptr);
|
||||
va_end(argptr);
|
||||
}
|
||||
|
||||
/*
|
||||
* Return number of microseconds elapsed since first call
|
||||
*/
|
||||
|
393
xrick.dsp
393
xrick.dsp
@ -1,393 +0,0 @@
|
||||
# Microsoft Developer Studio Project File - Name="xrick" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Application" 0x0101
|
||||
|
||||
CFG=xrick - Win32 Release
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "xrick.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "xrick.mak" CFG="xrick - Win32 Release"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "xrick - Win32 Release" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "xrick - Win32 Debug" (based on "Win32 (x86) Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "xrick - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386
|
||||
|
||||
!ELSEIF "$(CFG)" == "xrick - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x40c /d "_DEBUG"
|
||||
# ADD RSC /l 0x40c /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "xrick - Win32 Release"
|
||||
# Name "xrick - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\control.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_ents.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_maps.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_picsPC.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_picsST.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_screens.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_snd.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_spritesPC.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_spritesST.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_tilesPC.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\dat_tilesST.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\data.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\devtools.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\draw.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\e_bomb.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\e_bonus.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\e_box.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\e_bullet.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\e_rick.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\e_sbonus.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\e_them.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\ents.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\game.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\maps.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\rects.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\scr_gameover.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\scr_getname.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\scr_imain.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\scr_imap.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\scr_pause.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\scr_xrick.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\scroller.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\sysarg.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\sysevt.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\sysjoy.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\syskbd.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\syssnd.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\system.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\sysvid.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\unzip.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\util.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\xrick.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\config.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\control.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\data.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\debug.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\devtools.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\draw.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\e_bomb.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\e_bonus.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\e_box.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\e_bullet.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\e_rick.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\e_sbonus.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\e_them.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\ents.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\game.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\img.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\maps.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\pics.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\rects.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\screens.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\scroller.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\sprites.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\syssnd.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\system.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\sysvid.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\tiles.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\unzip.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\include\util.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\xrick.rc
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\xrickPC.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\xrickST.ico
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
Loading…
Reference in New Issue
Block a user