summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-06-07 17:49:09 +0200
committerBardur Arantsson <bardur@scientician.net>2015-06-07 17:49:09 +0200
commit237e105406f97bbec0ee42d37d02cec639e5db70 (patch)
tree6c640afaa8ca467041d80626fe405f80fd6e3456 /src
parent4cdbbd83d0030f6fa21e339dbd2d9b65604882e1 (diff)
Remove unused "include" handling for data files
Diffstat (limited to 'src')
-rw-r--r--src/init1.cc261
1 files changed, 19 insertions, 242 deletions
diff --git a/src/init1.cc b/src/init1.cc
index eb8dc876..276012dd 100644
--- a/src/init1.cc
+++ b/src/init1.cc
@@ -1555,77 +1555,6 @@ static void strappend(char **s, const char *t)
strcat(*s, t);
}
-/*
- * Implements fp stacks, for included files
- */
-static FILE *fp_stack[10];
-static int fp_stack_idx = 0;
-
-/*
- * Must be caleld before the main loop
- */
-static void fp_stack_init(FILE *fp)
-{
- fp_stack[0] = fp;
- fp_stack_idx = 0;
-}
-
-static void fp_stack_push(cptr name)
-{
- if (fp_stack_idx < 9)
- {
- char buf[1024];
- FILE *fp;
-
- /* Build the filename */
- path_build(buf, 1024, ANGBAND_DIR_EDIT, name);
-
- /* Open the file */
- fp = my_fopen(buf, "r");
-
- /* Parse it */
- if (!fp) quit(format("Cannot open '%s' file.", name));
-
- printf("ibncluding %s\n", name);
-
- fp_stack[++fp_stack_idx] = fp;
- }
-}
-
-static bool_ fp_stack_pop()
-{
- if (fp_stack_idx > 0)
- {
- FILE *fp = fp_stack[fp_stack_idx--];
- my_fclose(fp);
- return TRUE;
- }
- else
- return FALSE;
-}
-
-/*
- * Must be used instead of my_fgets for teh main loop
- */
-static int my_fgets_dostack(char *buf, int len)
-{
- // End of a file
- if (0 != my_fgets(fp_stack[fp_stack_idx], buf, len))
- {
- // If any left, use them
- if (fp_stack_pop())
- return my_fgets_dostack(buf, len);
- // If not, this is the end
- else
- return 1;
- }
- else
- {
- return 0;
- }
-}
-
-
/*** Initialize from ascii template files ***/
/*
@@ -1873,8 +1802,7 @@ errr init_player_info_txt(FILE *fp, char *buf)
}
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -1904,13 +1832,6 @@ errr init_player_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Reinit error_idx */
if (buf[0] == 'I')
{
@@ -3405,8 +3326,7 @@ errr init_v_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -3437,13 +3357,6 @@ errr init_v_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -3615,8 +3528,7 @@ errr init_f_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -3646,13 +3558,6 @@ errr init_f_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -4018,8 +3923,7 @@ errr init_k_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -4049,13 +3953,6 @@ errr init_k_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -4478,8 +4375,7 @@ errr init_al_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -4508,13 +4404,6 @@ errr init_al_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'I' for "Info" (one line only) */
if (buf[0] == 'I')
{
@@ -4868,8 +4757,7 @@ errr init_a_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -4899,13 +4787,6 @@ errr init_a_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -5177,8 +5058,7 @@ errr init_set_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -5208,13 +5088,6 @@ errr init_set_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -5390,8 +5263,7 @@ errr init_s_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -5421,13 +5293,6 @@ errr init_s_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'T' for "skill Tree" */
if (buf[0] == 'T')
{
@@ -5735,8 +5600,7 @@ errr init_ab_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -5766,13 +5630,6 @@ errr init_ab_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -6264,8 +6121,7 @@ errr init_e_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -6295,13 +6151,6 @@ errr init_e_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -6775,8 +6624,7 @@ errr init_ra_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -6806,13 +6654,6 @@ errr init_ra_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'G' for "General" (up to 30 lines) */
if (buf[0] == 'G')
{
@@ -7182,8 +7023,7 @@ errr init_r_info_txt(FILE *fp, char *buf)
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -7213,13 +7053,6 @@ errr init_r_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -7802,8 +7635,7 @@ errr init_re_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -7833,13 +7665,6 @@ errr init_re_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -8325,8 +8150,7 @@ errr init_t_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -8356,13 +8180,6 @@ errr init_t_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -8671,8 +8488,7 @@ errr init_d_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -8702,13 +8518,6 @@ errr init_d_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -9293,8 +9102,7 @@ errr init_st_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -9324,13 +9132,6 @@ errr init_st_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -9564,8 +9365,7 @@ errr init_ba_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -9595,13 +9395,6 @@ errr init_ba_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -9715,8 +9508,7 @@ errr init_ow_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -9746,13 +9538,6 @@ errr init_ow_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{
@@ -9940,8 +9725,7 @@ errr init_wf_info_txt(FILE *fp, char *buf)
error_line = -1;
/* Parse */
- fp_stack_init(fp);
- while (0 == my_fgets_dostack(buf, 1024))
+ while (0 == my_fgets(fp, buf, 1024))
{
/* Advance the line number */
error_line++;
@@ -9971,13 +9755,6 @@ errr init_wf_info_txt(FILE *fp, char *buf)
/* No version yet */
if (!okay) return (2);
- /* Included file */
- if (buf[0] == '<')
- {
- fp_stack_push(buf + 2);
- continue;
- }
-
/* Process 'N' for "New/Number/Name" */
if (buf[0] == 'N')
{