add macros
add readme
update map
This commit is contained in:
quenousimporte 2025-03-30 10:53:05 +02:00
parent febb38e8b3
commit 1a55403d9d
3 changed files with 89 additions and 30 deletions

4
w/readme.md Normal file
View File

@ -0,0 +1,4 @@
mac: gcc -std=c99 w.c
windows: launch chcp 65001 before

103
w/w.c
View File

@ -1,27 +1,28 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdbool.h>
#define CMD_LEN 10 #define CMD_LEN 10
#define NAME_LEN 10 #define NAME_LEN 10
#define POV_3D_SIZE 10 #define POV_3D_SIZE 10
#define POV_SIZE 3 #define POV_SIZE 3
#define NULL_CMD "-"
#define PLACE_TITLE 0 #define PLACE_TITLE 0
#define PLACE_STATION 1 #define PLACE_SETNAME 1
#define PLACE_MAP 2 #define PLACE_STATION 2
#define PLACE_MAP 3
typedef struct { typedef struct {
int x; int x;
int y; int y;
char orientation; char orientation;
} Location; } Location; // rename position
typedef struct { typedef struct {
char name[NAME_LEN]; char name[NAME_LEN];
Location location; Location location;
char place; char place; // rename screen
} Gamestate; } Gamestate;
const char* statepath = "w.state"; const char* statepath = "w.state";
@ -212,14 +213,14 @@ void update3dpov()
} }
} }
const char doorchar = 177; const char doorchar = '#';
if (pov[1][1] == 'd') if (pov[1][1] == 'd')
{ {
// front door // front door
for (int i = 4; i <= 7; i++) for (int i = 4; i <= 7; i++)
{ {
for (int j = 3; j < 7; j++) for (int j = 3; j < 7; j++)
pov3d[i][j] = doorchar; pov3d[i][j] = doorchar;
} }
} }
if (pov[2][0] == 'd') if (pov[2][0] == 'd')
@ -342,7 +343,6 @@ void clearscreen()
{ {
#ifdef _WIN32 #ifdef _WIN32
system("cls"); system("cls");
// launch chcp 65001 before
#else #else
system("clear"); system("clear");
#endif #endif
@ -385,6 +385,13 @@ void update(char command[CMD_LEN])
updatepov(); updatepov();
} }
else if (state.place == PLACE_TITLE) else if (state.place == PLACE_TITLE)
{
if (strcmp(command, NULL_CMD) != 0)
{
state.place = PLACE_SETNAME;
}
}
else if (state.place == PLACE_SETNAME)
{ {
if (strlen(command) > 0) if (strlen(command) > 0)
{ {
@ -408,44 +415,92 @@ void update(char command[CMD_LEN])
void draw() void draw()
{ {
clearscreen(); clearscreen();
int screenwidth = 30;
for (int i = 0; i < screenwidth; i++) printf("-");
printf("\n");
if (state.place == PLACE_TITLE) if (state.place == PLACE_TITLE)
{ {
printf("\n\n La légende des dongeons de l'espace\n\n\n"); printf(" _ _\n");
printf("Bonjour.\n"); printf(" / / / /\n");
printf("Bienvenue la station spaciale intergalactique.\n"); printf(" / / / /\n");
printf("Veuillez saisir votre nom:\n"); printf(" / /__a / /__égende\n");
printf("> "); printf(" |____/ |____/\n");
printf("\n");
printf(" du ___\n");
printf(" / _ \\ \n");
printf(" / / | |\n");
printf(" / /_/ /ongeon\n");
printf(" /____ /\n");
printf("\n");
printf(" _____\n");
printf(" de l' / ___/\n");
printf(" / /_\n");
printf(" / /___space\n");
printf(" /_____/\n");
}
else if (state.place == PLACE_SETNAME)
{
printf("Bonjour.\n\n");
printf("Bienvenue à la station\n");
printf("spaciale intergalactique.\n\n");
printf("Veuillez saisir votre nom.\n");
} }
else if (state.place == PLACE_MAP) else if (state.place == PLACE_MAP)
{ {
int shift = 5; int shift = 9;
for (int i = 0; i < shift; i++) printf("\n");
for (int i = 0; i < shift; i++) printf(" "); for (int i = 0; i < shift; i++) printf(" ");
printf("o----------o\n"); printf("o----------o\n");
for (int i = 0; i < 10; i++) for (int i = 0; i < POV_3D_SIZE; i++)
{ {
for (int s = 0; s < shift; s++) printf(" "); for (int s = 0; s < shift; s++) printf(" ");
printf("|"); printf("|");
for (int j = 0; j < 10; j++) for (int j = 0; j < POV_3D_SIZE; j++)
{ {
printf("%c", pov3d[i][j]); printf("%c", pov3d[i][j]);
} }
printf("|\n"); printf("|\n");
} }
for (int i = 0; i < shift; i++) printf(" "); for (int i = 0; i < shift; i++) printf(" ");
printf("o----------o\n\n"); printf("o----------o");
if (charatpos(state.location.x, state.location.y) == 's')
{
// dessiner un hublot au plafond (dans updatepov3d)
printf("\n\nr: Retour à la station\n");
}
else
{
printf("\n ^\n");
printf(" <w s x>\n");
}
//drawmap(); //drawmap();
} }
else if (state.place == PLACE_STATION) else if (state.place == PLACE_STATION)
{ {
printf("%s est à la station intergalactique.\n\n", state.name); printf("\n");
printf("n: prendre la navette pour le dongeon de l'espace\n"); printf(" STATION SPACIALE\n");
printf(" INTERGALACTIQUE\n");
printf("\n");
printf("n: Prendre la navette\n");
} }
if (state.place == PLACE_STATION || state.place == PLACE_MAP)
{
printf("\n");
for (int i = 0; i < screenwidth; i++) printf("-");
printf("\n");
printf("%s | PV:10 | CG:0 | PSI:0", state.name);
}
printf("\n");
for (int i = 0; i < screenwidth; i++) printf("-");
printf("\n> ");
} }
void drawtopdownpov() void drawtopdownpov()
@ -481,7 +536,7 @@ int main()
{ {
init(); init();
char command[CMD_LEN] = ""; char command[CMD_LEN] = NULL_CMD;
while (command[0] != 'q') while (command[0] != 'q')
{ {

12
w/w.map
View File

@ -1,14 +1,14 @@
wwwwwwwwwwwwwww wwwwwwwwwwwwwww
w w w w
w wwwww wwwww 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 w
w w wdw w w w
w w w w w w w w w w w w
wdw wdw w wdwwwwwdw w
w d wwwww w w w w wwwwwdw
wwwwwwwww w w w www w w
w w w ws w w w
w w w wwwwwww w w
w w w w w w
w w w w w w
w d w w d w