From 706dfc3b9fc2aef2427fda5e40c2d5dae9e894b1 Mon Sep 17 00:00:00 2001 From: jjanzen Date: Mon, 20 Jan 2025 17:30:19 -0600 Subject: start migration to zig --- src/display.h | 54 ------------------------------------------------------ 1 file changed, 54 deletions(-) delete mode 100644 src/display.h (limited to 'src/display.h') diff --git a/src/display.h b/src/display.h deleted file mode 100644 index b5d7d53..0000000 --- a/src/display.h +++ /dev/null @@ -1,54 +0,0 @@ -/* -This file is part of urlg. -urlg is free software: you can redistribute it and/or modify it under the terms -of the GNU General Public License as published by the Free Software Foundation, -either version 3 of the License, or (at your option) any later version. urlg 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 urlg. If not, see -. -*/ -#ifndef DISPLAY_H_ -#define DISPLAY_H_ - -#include - -#include "cavegen.h" -#include "entity.h" -#include "ht.h" - -#define MAIN_PANEL_WIDTH 100 -#define MAIN_PANEL_HEIGHT 41 -#define INSTRUCTION_PANEL_WIDTH 32 -#define INSTRUCTION_PANEL_HEIGHT 39 -#define MESSAGE_PANEL_WIDTH 100 -#define MESSAGE_PANEL_HEIGHT 3 -#define STATUS_PANEL_WIDTH 32 -#define STATUS_PANEL_HEIGHT 5 - -typedef struct windows display_t; - -enum action { - ACTION_NONE, - ACTION_EXIT, - ACTION_DOWN, - ACTION_UP, - ACTION_LEFT, - ACTION_RIGHT, - ACTION_STAIR_DOWN, - ACTION_STAIR_UP, - NUM_ACTIONS, -}; - -display_t *display_init(void); -void display_destroy(display_t *disp); - -void display_map(display_t *disp, struct map *map, ht_t *entities); -void display_instructions(display_t *disp); -void display_message(display_t *disp, char *msg); -void display_status(display_t *disp, struct entity *entity); - -enum action display_process_input(void); - -#endif // DISPLAY_H_ -- cgit v1.2.3