summaryrefslogtreecommitdiff
path: root/csrc/player_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'csrc/player_info.h')
-rw-r--r--csrc/player_info.h93
1 files changed, 0 insertions, 93 deletions
diff --git a/csrc/player_info.h b/csrc/player_info.h
deleted file mode 100644
index 584a108..0000000
--- a/csrc/player_info.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Copyright (C) 2018 Iru Cai <mytbk920423@gmail.com>
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
-
-#include <stdint.h>
-
-typedef struct
-{
- const char *name_ptr;
- uint32_t f4;
- uint16_t xpos; /* 0x496b70 */
- uint16_t ypos; /* 0x496b72 */
- uint16_t f12;
- uint16_t f14;
- /* 0x10 */
- uint8_t f16;
- uint8_t traffic_method; /* 0x496b79 */
- uint8_t ndices; /* 0x496b7a */
- uint8_t character;
- uint8_t sex; /* 0: female, 1: male */
- uint8_t who_plays; /* 0: not alive, 1: human, 2: computer @0x496b7d */
- uint8_t f22;
- uint8_t f23;
- uint8_t f24;
- uint8_t init_cash_ratio;
- uint8_t f26;
- uint8_t f27;
- int32_t cash;
- /* 0x20 */
- int32_t money_in_bank; /* including special financing */
- int32_t loan;
- int32_t special_finance;
- uint32_t f44;
- /* 0x30 */
- uint16_t points;
- uint8_t days_in_hotel; /* 0x496b9a */
- uint8_t days_disappearing;
- uint8_t days_in_prison;
- uint8_t days_in_hospital;
- uint8_t days_sleeping;
- uint8_t days_sleep_walking;
- uint8_t days_stopping; /* 0x496ba0 */
- uint8_t days_tortoise_walking;
- uint8_t f58;
- uint8_t days_rejected_by_bank;
- uint8_t days_bank_no_loans;
- uint8_t f61;
- uint8_t days_assurance;
- uint8_t god_info;
- /* 0x40 */
- uint8_t f64;
- uint8_t f65;
- uint8_t total_winter_sleep_days;
- uint8_t f67;
- uint16_t f68;
- uint16_t f70;
- uint16_t f72;
- uint16_t f74;
- uint32_t f76[6];
- uint8_t f100; /* 0x496bcc */
- uint8_t f101;
- uint8_t f102;
- uint8_t f103;
-} player_info;
-
-extern player_info players[]; /* 0x496b68 */
-extern player_info rich4_players[]; /* 0x47e80c */
-
-extern int nplayers; /* 0x499114 */
-extern int current_player; /* 0x49910c */
-
-extern uint8_t player_cards[60]; /* 0x499120 */
-extern uint8_t tool_amount[60]; /* 0x49915c */
-
-/* still don't know what this means,
- * assume it's special players */
-typedef struct
-{
- uint16_t f0;
- uint16_t f2;
- uint16_t f4;
- uint16_t f6;
- uint8_t f8[2];
- uint8_t f10; // 0x498df2
- uint8_t f11;
- uint8_t days_winter_sleep; // 0x498df4
- uint8_t days_sleep_walking; // 0x498df5
- uint8_t days_stopping;
- uint8_t days_tortoise_walking;
-} special_player_info;
-
-extern special_player_info special_players[5]; // 0x498e28