start to handle different locations
This commit is contained in:
parent
f55731906a
commit
375509d58d
106
w/w.c
106
w/w.c
|
@ -1,10 +1,13 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int x;
|
int x;
|
||||||
int y;
|
int y;
|
||||||
char orientation;
|
char orientation;
|
||||||
|
char place[2];
|
||||||
} Location;
|
} Location;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -12,24 +15,51 @@ typedef struct {
|
||||||
Location location;
|
Location location;
|
||||||
} Gamestate;
|
} Gamestate;
|
||||||
|
|
||||||
const int MAP_SIZE = 9;
|
|
||||||
const char* statepath = "w.state";
|
const char* statepath = "w.state";
|
||||||
char pov[3][3];
|
char pov[3][3];
|
||||||
unsigned char pov3d[10][10];
|
unsigned char pov3d[10][10];
|
||||||
Gamestate state;
|
Gamestate state;
|
||||||
char map[9][9];
|
|
||||||
|
int MAP_SIZE = 0;
|
||||||
|
char* map = NULL;
|
||||||
|
|
||||||
|
bool inmap()
|
||||||
|
{
|
||||||
|
return state.location.place[0] == 'f';
|
||||||
|
}
|
||||||
|
|
||||||
|
char charatpos(int x, int y)
|
||||||
|
{
|
||||||
|
if (x < 0 || y < 0 || x >= MAP_SIZE || y >= MAP_SIZE)
|
||||||
|
{
|
||||||
|
return ' ';
|
||||||
|
}
|
||||||
|
return map[ (MAP_SIZE - y - 1) * MAP_SIZE + x];
|
||||||
|
}
|
||||||
|
|
||||||
void loadmap()
|
void loadmap()
|
||||||
{
|
{
|
||||||
FILE* file = fopen("f1.map", "r");
|
char filename[6];
|
||||||
for (int i = 0; i < MAP_SIZE; i++)
|
strcpy(filename, state.location.place);
|
||||||
|
strcat(filename, ".map");
|
||||||
|
FILE* file = fopen(filename, "r");
|
||||||
|
while (fgetc(file) != '\n')
|
||||||
{
|
{
|
||||||
for (int j = 0; j < MAP_SIZE; j++)
|
MAP_SIZE++;
|
||||||
{
|
}
|
||||||
map[i][j] = fgetc(file);
|
rewind(file);
|
||||||
|
|
||||||
|
map = (char*)malloc(MAP_SIZE * MAP_SIZE * sizeof(char));
|
||||||
|
|
||||||
|
char c = 0;
|
||||||
|
int i = 0;
|
||||||
|
while (c != EOF)
|
||||||
|
{
|
||||||
|
c = fgetc(file);
|
||||||
|
if (c != '\n')
|
||||||
|
{
|
||||||
|
map[i++] = c;
|
||||||
}
|
}
|
||||||
// skip lf
|
|
||||||
fgetc(file);
|
|
||||||
}
|
}
|
||||||
fclose(file);
|
fclose(file);
|
||||||
}
|
}
|
||||||
|
@ -38,9 +68,9 @@ void drawmap()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < MAP_SIZE; i++) {
|
for (int i = 0; i < MAP_SIZE; i++) {
|
||||||
int y = MAP_SIZE - i - 1;
|
int y = MAP_SIZE - i - 1;
|
||||||
printf("%d", y);
|
//printf("%d", y);
|
||||||
for (int j = 0; j < MAP_SIZE; j++) {
|
for (int j = 0; j < MAP_SIZE; j++) {
|
||||||
char toprint = map[i][j];
|
char toprint = map[i * MAP_SIZE + j];
|
||||||
if (y == state.location.y && j == state.location.x)
|
if (y == state.location.y && j == state.location.x)
|
||||||
{
|
{
|
||||||
if (state.location.orientation == 'n') toprint = '^';
|
if (state.location.orientation == 'n') toprint = '^';
|
||||||
|
@ -52,7 +82,7 @@ void drawmap()
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
printf(" 012345678\n");
|
//printf(" 012345678\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void loadstate()
|
void loadstate()
|
||||||
|
@ -73,15 +103,6 @@ void savestate()
|
||||||
fclose(file);
|
fclose(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
char charatpos(int x, int y)
|
|
||||||
{
|
|
||||||
if (x < 0 || y < 0 || x >= MAP_SIZE || y >= MAP_SIZE)
|
|
||||||
{
|
|
||||||
return ' ';
|
|
||||||
}
|
|
||||||
return map[8-y][x];
|
|
||||||
}
|
|
||||||
|
|
||||||
void update3dpov()
|
void update3dpov()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < 10; i++)
|
for (int i = 0; i < 10; i++)
|
||||||
|
@ -329,24 +350,36 @@ void dumpstate()
|
||||||
state.location.orientation);
|
state.location.orientation);
|
||||||
}
|
}
|
||||||
|
|
||||||
void init()
|
void firstgame()
|
||||||
{
|
{
|
||||||
loadmap();
|
printf("Welcome to space dungeons.\n\nEnter your name: ");
|
||||||
loadstate();
|
|
||||||
if (strlen(state.name) == 0)
|
|
||||||
{
|
|
||||||
printf("Welcome.\nEnter your name: ");
|
|
||||||
fgets(state.name, sizeof(state.name), stdin);
|
fgets(state.name, sizeof(state.name), stdin);
|
||||||
state.name[strcspn(state.name, "\n")] = 0;
|
state.name[strcspn(state.name, "\n")] = 0; // remove last lf
|
||||||
|
|
||||||
|
// start at station
|
||||||
|
strcpy(state.location.place, "st");
|
||||||
state.location.x = 1;
|
state.location.x = 1;
|
||||||
state.location.y = 1;
|
state.location.y = 1;
|
||||||
state.location.orientation = 'n';
|
state.location.orientation = 'n';
|
||||||
|
}
|
||||||
|
|
||||||
|
void init()
|
||||||
|
{
|
||||||
|
loadstate();
|
||||||
|
if (strlen(state.name) == 0)
|
||||||
|
{
|
||||||
|
firstgame();
|
||||||
}
|
}
|
||||||
updatepov();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void update(char command)
|
void update(char command)
|
||||||
{
|
{
|
||||||
|
if (inmap())
|
||||||
|
{
|
||||||
|
if (map == NULL)
|
||||||
|
{
|
||||||
|
loadmap();
|
||||||
|
}
|
||||||
switch (command)
|
switch (command)
|
||||||
{
|
{
|
||||||
case 's':
|
case 's':
|
||||||
|
@ -362,6 +395,8 @@ void update(char command)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
updatepov();
|
updatepov();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void draw()
|
void draw()
|
||||||
|
@ -373,6 +408,8 @@ void draw()
|
||||||
system("clear");
|
system("clear");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (inmap())
|
||||||
|
{
|
||||||
int shift = 10;
|
int shift = 10;
|
||||||
for (int i = 0; i < shift; i++) printf("\n");
|
for (int i = 0; i < shift; i++) printf("\n");
|
||||||
|
|
||||||
|
@ -391,6 +428,13 @@ void draw()
|
||||||
}
|
}
|
||||||
for (int i = 0; i < shift; i++) printf(" ");
|
for (int i = 0; i < shift; i++) printf(" ");
|
||||||
printf("o----------o\n");
|
printf("o----------o\n");
|
||||||
|
|
||||||
|
drawmap();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("%s's location is %s", state.name, state.location.place);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -421,14 +465,12 @@ void drawtopdownpov()
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
init();
|
init();
|
||||||
|
|
||||||
char command = ' ';
|
char command = ' ';
|
||||||
while (command != 'q')
|
while (command != 'q')
|
||||||
{
|
{
|
||||||
update(command);
|
update(command);
|
||||||
draw();
|
draw();
|
||||||
dumpstate();
|
|
||||||
drawmap();
|
|
||||||
drawtopdownpov();
|
|
||||||
command = getchar();
|
command = getchar();
|
||||||
}
|
}
|
||||||
savestate();
|
savestate();
|
||||||
|
|
Loading…
Reference in New Issue