put map back in code

This commit is contained in:
quenousimporte 2025-04-01 13:45:08 +02:00
parent cb0c4f42cb
commit 7df5082051
1 changed files with 19 additions and 28 deletions

47
w/w.c
View File

@ -55,8 +55,24 @@ char pov[POV_SIZE][POV_SIZE];
unsigned char pov3d[POV_3D_SIZE][POV_3D_SIZE]; unsigned char pov3d[POV_3D_SIZE][POV_3D_SIZE];
Gamestate state; Gamestate state;
int mapsize = 0; int mapsize = 15;
char* map = NULL; char map[15][15] = {
"wwwwwwwwwwwwwww",
"w w",
"w wwwww wwwww w",
"w w w d w w w",
"w w w w w w w",
"w w w w w w",
"wdwwwwwdw w",
"w w w wwwwwdw",
"w www w w",
"ws w w w",
"wwwwwww w w",
"w w w",
"w w w",
"w d w",
"wwwwwwwwwwwwwww"
};
Character monsters[1] = { Character monsters[1] = {
{ "Alien", 1, 2, 1, 1 } { "Alien", 1, 2, 1, 1 }
@ -73,31 +89,7 @@ char charatpos(int x, int y)
{ {
return ' '; return ' ';
} }
return map[y * mapsize + x]; return map[y][x];
}
void loadmap()
{
FILE* file = fopen("w.map", "r");
while (fgetc(file) != '\n')
{
mapsize++;
}
rewind(file);
map = (char*)malloc(mapsize * mapsize * sizeof(char));
char c = 0;
int i = 0;
while (c != EOF)
{
c = fgetc(file);
if (c != '\n')
{
map[i++] = c;
}
}
fclose(file);
} }
void drawmap() void drawmap()
@ -403,7 +395,6 @@ void init()
{ {
state.screen = SC_TITLE; state.screen = SC_TITLE;
} }
loadmap();
} }
void update(char command[CMD_LEN]) void update(char command[CMD_LEN])