-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathisscrolls.h
420 lines (385 loc) · 10.3 KB
/
isscrolls.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/*
* Copyright (c) 2021-24 Matthias Schmidt <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef ISSCROLLS_H
#define ISSCROLLS_H
#include <sys/queue.h>
#include <json-c/json.h>
#include <stdio.h>
#define VERSION "2024.b"
#define PATH_SHARE_DIR "/usr/local/share/isscrolls"
#define MAX_PROMPT_LEN 255
#define MAX_CHAR_LEN 100
#define MAX_STAT_LEN 20
#define MAX_VOW_TITLE 25
#define MAX_VOW_DESC 255
#define MAX_VOWS 255
#define STAT_WITS 0x00001
#define STAT_EDGE 0x00010
#define STAT_HEART 0x00100
#define STAT_SHADOW 0x01000
#define STAT_IRON 0x10000
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_GREEN "\x1b[32m"
#define ANSI_COLOR_YELLOW "\x1b[33m"
#define ANSI_COLOR_BLUE "\x1b[34m"
#define ANSI_COLOR_MAGENTA "\x1b[35m"
#define ANSI_COLOR_CYAN "\x1b[36m"
#define ANSI_COLOR_BOLD "\x1b[1m"
#define ANSI_COLOR_RESET "\x1b[0m"
#define CURCHAR_CHECK() do { \
if (curchar == NULL) { \
printf("No character loaded. Use 'cd' to load a character\n"); \
return; \
} \
} while(0)
/* oracle.c */
void cmd_show_iron_name(char *);
void cmd_show_elf_name(char *);
void cmd_show_giant_name(char *);
void cmd_show_varou_name(char *);
void cmd_show_troll_name(char *);
void cmd_show_action(char *);
void cmd_show_theme(char *);
void cmd_show_rank(char *);
void cmd_show_combat_action(char *);
void cmd_show_plot_twist(char *);
void cmd_show_mystic_backshlash(char *);
void cmd_show_region(char *);
void cmd_show_location_description(char *);
void cmd_show_location(char *);
void cmd_show_coastal_location(char *);
void cmd_show_pay_the_price(char *);
void cmd_reveal_a_danger(char *);
void cmd_find_an_opportunity(char *);
void cmd_generate_npc(char *);
void cmd_show_settlement_trouble(char *);
void show_info_from_oracle(int, int, int);
void convert_to_lowercase(char *);
void read_oracle_from_json(int, int);
/* readline.c */
char ** my_completion(const char *, int, int);
char* command_generator(const char *, int);
void initialize_readline(const char *);
void execute_command(char *);
char* stripwhite (char *);
struct command* find_command(char *);
void cmd_cd(char *);
void cmd_cds(char *);
/* rolls.c */
void cmd_roll_action_dice(char *);
void cmd_roll_challenge_die(char *);
void cmd_roll_oracle_die(char *);
void cmd_yes_or_no(char *);
void cmd_usage(char *);
void cmd_create_character(char *);
void cmd_resupply(char *);
void cmd_face_danger(char *);
void cmd_secure_an_advantage(char *);
void cmd_make_camp(char *);
void cmd_compel(char *);
void cmd_sojourn(char *);
void cmd_draw_the_circle(char *);
void cmd_forge_a_bond(char *);
void cmd_test_your_bond(char *);
void cmd_swear_an_iron_vow(char *);
void cmd_face_death(char *);
void cmd_face_desolation(char *);
void cmd_endure_stress(char *);
void cmd_write_your_epilogue(char *);
long roll_action_die(void);
long roll_challenge_die(void);
long roll_oracle_die(void);
void yes_or_no(int);
int action_roll(int[2]);
int progress_roll(double[2]);
void ask_for_journey_difficulty(void);
int get_int_from_cmd(const char *);
int get_args_from_cmd(char *, char *, int*);
/* isscrolls.c */
void cmd_quit(char *);
void show_banner(char *);
void log_debug(const char *, ...);
void log_errx(int, const char *, ...);
void pm(int, const char *, ...);
void setup_base_dir(void);
void shutdown(int) __attribute__((noreturn));
void sandbox(const char *);
void set_prompt(const char *);
void toggle_output(void);
void toggle_si(void);
void toggle_ironsworn(void);
int get_output(void);
int get_color(void);
int get_si(void);
int get_cursed(void);
int get_ironsworn(void);
const char * get_isscrolls_dir(void);
/* character.c */
struct character* init_character_struct(void);
void print_character(void);
struct character* create_character(const char *);
void free_character(void);
int validate_range(int, int);
int ask_for_value(const char *, int);
void cmd_print_current_character(char *);
void cmd_delete_character(char *);
void cmd_learn_from_your_failures(__attribute__((unused)) char *unused);
void save_character(void);
void delete_saved_character(int);
int load_character(int) __attribute((warn_unused_result));
struct character * get_current_character(void);
int return_character_id(const char *) __attribute((warn_unused_result));
int return_char_stat(const char *, int) __attribute((warn_unused_result));
int load_characters_list(void) __attribute((warn_unused_result));
void save_current_character(void);
void cmd_increase_value(char *);
void cmd_decrease_value(char *);
void cmd_toggle(char *);
void cmd_ls(char *);
void cmd_gather_information(char *);
void cmd_heal(char *);
void cmd_save(char *);
void cmd_mark_progress(char *);
void cmd_mark_a_bond(char *);
void cmd_burn_momentum(char *);
void change_char_value(const char *, int, int);
void increase_value(const char *, int *, int);
void decrease_value(const char *, int *, int);
void modify_value(const char *, int *, int, int, int, int);
void modify_double(const char *, double *, double, double, double, int);
void toggle_value(const char *, int *);
void change_momentum_reset(int);
void set_max_momentum(void);
int validate_int(json_object *, const char *, int, int, int);
double validate_double(json_object *, const char *, double, double, double);
int character_exists(const char *) __attribute((warn_unused_result));
void update_prompt(void);
void unset_last_loaded_character(void);
/* journey.c */
void mark_journey_progress(int);
void save_journey(void);
void load_journey(int);
void delete_journey(int);
void reach_your_destination_failed(void);
void cmd_undertake_a_journey(char *);
void cmd_reach_your_destination(char *);
/* fight.c */
void load_fight(int);
void save_fight(void);
void delete_fight(int);
void cmd_enter_the_fray(char *);
void cmd_strike(char *);
void cmd_clash(char *);
void cmd_battle(char *);
void cmd_endure_harm(char *);
void cmd_take_decisive_action(char *);
void mark_fight_progress(int);
void ask_for_fight_difficulty(void);
void cmd_end_the_fight(char *);
void set_initiative(int);
/* delve.c */
void cmd_discover_a_site(char *);
void cmd_delve_the_depths(char *);
void cmd_locate_your_objective(char *);
void cmd_check_your_gear(char *);
void cmd_escape_the_depths(char *);
void mark_delve_progress(int);
void load_delve(int);
void save_delve(void);
void delete_delve(int);
void ask_for_delve_difficulty(void);
void locate_your_objective_failed(void);
/* sundered_isles.c */
void cmd_undertake_an_expedition(char *);
void cmd_finish_an_expedition(char *);
void cmd_explore_a_waypoint(char *);
void cmd_set_a_course(char *);
void cmd_sacrifice_resources(char *);
void cmd_hearten(char *);
void cmd_make_a_connection(char *);
void cmd_test_your_relationship(char *);
void cmd_react_under_fire(char *);
void cmd_gain_ground(char *);
void cmd_moon_oracle(char *);
void ask_for_expedition_difficuly(void);
void mark_expedition_progress(int);
void load_expedition(int);
void save_expedition(void);
void delete_expedition(int);
/* vow.c */
void cmd_create_new_vow(const char *);
void cmd_activate_vow(char *);
void cmd_deactivate_vow(char *);
void cmd_delete_vow(char *);
void cmd_mark_vow_progress(char *);
void cmd_show_all_vows(char *);
void cmd_fulfill_your_vow(char *);
void cmd_reach_a_milestone(char *);
void cmd_forsake_your_vow(char *);
void ask_for_vow_difficulty(void);
void reset_vow(struct character *curchar);
void mark_vow_progress(int);
void save_vow(void);
void delete_vow(int);
int load_vow(int);
int get_max_vow_id(void);
enum oracle_codes {
ORACLE_IS_NAMES,
ORACLE_ELF_NAMES,
ORACLE_GIANT_NAMES,
ORACLE_VAROU_NAMES,
ORACLE_TROLL_NAMES,
ORACLE_ACTIONS,
ORACLE_THEMES,
ORACLE_RANKS,
ORACLE_COMBAT_ACTIONS,
ORACLE_PLOT_TWISTS,
ORACLE_MYSTIC_BACKSLASH,
ORACLE_REGION,
ORACLE_LOCATION ,
ORACLE_COASTAL,
ORACLE_DESCRIPTION,
ORACLE_PAYTHEPRICE,
ORACLE_DELVE_THE_DEPTHS_EDGE,
ORACLE_DELVE_THE_DEPTHS_SHADOW,
ORACLE_DELVE_THE_DEPTHS_WITS,
ORACLE_DELVE_OPPORTUNITY,
ORACLE_DELVE_DANGER,
ORACLE_CHAR_ROLE,
ORACLE_CHAR_GOAL ,
ORACLE_CHAR_DESC ,
ORACLE_CHAR_DISPOSITION ,
ORACLE_CHAR_ACTIVITY,
ORACLE_SETTLEMENT_TROUBLE,
};
enum oracle_json {
JSON_CHARACTERS,
JSON_NAMES,
JSON_MOVES,
JSON_ACTION,
JSON_TURNING,
JSON_PLACES,
JSON_SETTLEMENT,
};
enum dice_results {
MISS = 2,
MISS_MATCH = 12,
WEAK = 4,
WEAK_MATCH = 14,
STRONG = 8,
STRONG_MATCH = 18,
};
enum how_to_change_values {
INCREASE,
DECREASE,
};
enum color_codes {
RED,
YELLOW,
GREEN,
BLUE,
DEFAULT,
};
struct command {
const char *name;
void (*cmd)(char *);
const char *doc;
int alias;
int si;
};
struct journey {
double progress;
int id;
int difficulty;
};
struct fight {
double progress;
int id;
int difficulty;
int initiative;
};
struct expedition {
double progress;
int id;
int difficulty;
};
struct delve {
double progress;
int id;
int difficulty;
};
struct vow {
char *title;
char *description;
double progress;
int difficulty;
int id;
int vid;
int fulfilled;
};
struct character {
struct journey *j;
struct fight *fight;
struct delve *delve;
struct vow *vow;
struct expedition *expedition;
char *name;
double bonds;
double failure_track;
double legacy_quests;
double legacy_bonds;
double legacy_discoveries;
double quests;
double discoveries;
int dead;
int journey_active;
int fight_active;
int delve_active;
int vow_active;
int expedition_active;
int id;
int edge;
int heart;
int iron;
int shadow;
int wits;
int exp;
int exp_used;
int momentum;
int max_momentum;
int momentum_reset;
int health;
int spirit;
int supply;
int wounded;
int unprepared;
int shaken;
int encumbered;
int maimed;
int battle_scarred;
int cursed;
int corrupted;
int tormented;
int weapon;
int vid;
int strong_hit;
};
struct entry {
LIST_ENTRY(entry) entries;
char name[255];
int id;
};
#endif