home · contact · privacy
Removed unused client command id.
[plomrogue] / src / client / command_db.c
1 /* src/client/command_db.c */
2
3 #include "command_db.h"
4 #include <stdint.h> /* uint8_t, uint32_t */
5 #include <stdio.h> /* FILE */
6 #include <stdlib.h> /* free() */
7 #include <string.h> /* memcpy(), strlen(), strtok() */
8 #include "../common/readwrite.h" /* try_fopen(), try_fclose(), try_fgets()
9                                   * textfile_sizes()
10                                   */
11 #include "../common/try_malloc.h" /* try_malloc() */
12 #include "cleanup.h" /* set_cleanup_flag() */
13 #include "world.h" /* global world */
14
15
16
17 /* Point "ch_ptr" to next strtok() string in "line" delimited by "delim".*/
18 static void copy_tokenized_string(char * line, char ** ch_ptr, char * delim);
19
20
21
22 static void copy_tokenized_string(char * line, char ** ch_ptr, char * delim)
23 {
24     char * f_name = "copy_tokenized_string()";
25     char * dsc_ptr = strtok(line, delim);
26     * ch_ptr = try_malloc(strlen(dsc_ptr) + 1, f_name);
27     memcpy(* ch_ptr, dsc_ptr, strlen(dsc_ptr) + 1);
28 }
29
30
31
32 extern char * get_command_longdsc(char * dsc_short)
33 {
34     struct Command * cmd_ptr = world.cmd_db.cmds;
35     while (1)
36     {
37         if (0 == strcmp(dsc_short, cmd_ptr->dsc_short))
38         {
39             return cmd_ptr->dsc_long;
40         }
41         cmd_ptr = &cmd_ptr[1];
42     }
43 }
44
45
46
47 extern void init_command_db()
48 {
49     char * f_name = "init_command_db()";
50     char * path = "confclient/commands";
51     FILE * file = try_fopen(path, "r", f_name);
52     uint32_t lines;
53     uint32_t linemax = textfile_sizes(file, &lines);
54     char line[linemax + 1];
55     world.cmd_db.cmds = try_malloc(lines * sizeof(struct Command), f_name);
56     uint8_t i = 0;
57     while (try_fgets(line, linemax + 1, file, f_name))
58     {
59         if ('\n' == line[0] || 0 == line[0])
60         {
61             break;
62         }
63         copy_tokenized_string(line, &world.cmd_db.cmds[i].dsc_short, " ");
64         copy_tokenized_string(NULL, &world.cmd_db.cmds[i].dsc_long, "\n");
65         i++;
66     }
67     try_fclose(file, f_name);
68     world.cmd_db.n = lines;
69     set_cleanup_flag(CLEANUP_COMMANDS);
70 }
71
72
73
74 extern void free_command_db()
75 {
76     uint8_t i = 0;
77     while (i < world.cmd_db.n)
78     {
79         free(world.cmd_db.cmds[i].dsc_short);
80         free(world.cmd_db.cmds[i].dsc_long);
81         i++;
82     }
83     free(world.cmd_db.cmds);
84 }