moving along slowly
[retroray] / src / options.c
1 /*
2 RetroRay - integrated standalone vintage modeller/renderer
3 Copyright (C) 2023  John Tsiombikas <nuclear@mutantstargoat.com>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #include <stdio.h>
19 #include <string.h>
20 #include <errno.h>
21 #include "options.h"
22 #include "treestor.h"
23
24 #define DEF_XRES                640
25 #define DEF_YRES                480
26 #define DEF_VSYNC               1
27 #define DEF_FULLSCR             1
28 #define DEF_MOUSE_SPEED 50
29 #define DEF_SBALL_SPEED 50
30
31
32 struct options opt = {
33         DEF_XRES, DEF_YRES,
34         DEF_VSYNC,
35         DEF_FULLSCR,
36         DEF_MOUSE_SPEED, DEF_SBALL_SPEED,
37 };
38
39 int load_options(const char *fname)
40 {
41         struct ts_node *cfg;
42
43         if(!(cfg = ts_load(fname))) {
44                 return -1;
45         }
46         printf("loaded config: %s\n", fname);
47
48         opt.xres = ts_lookup_int(cfg, "options.video.xres", DEF_XRES);
49         opt.yres = ts_lookup_int(cfg, "options.video.yres", DEF_YRES);
50         opt.vsync = ts_lookup_int(cfg, "options.video.vsync", DEF_VSYNC);
51         opt.fullscreen = ts_lookup_int(cfg, "options.video.fullscreen", DEF_FULLSCR);
52
53         opt.mouse_speed = ts_lookup_int(cfg, "options.input.mousespeed", DEF_MOUSE_SPEED);
54         opt.sball_speed = ts_lookup_int(cfg, "options.input.sballspeed", DEF_SBALL_SPEED);
55
56         ts_free_tree(cfg);
57         return 0;
58 }
59
60 #define WROPT(lvl, fmt, val, defval) \
61         do { \
62                 int i; \
63                 for(i=0; i<lvl; i++) fputc('\t', fp); \
64                 if((val) == (defval)) fputc('#', fp); \
65                 fprintf(fp, fmt "\n", val); \
66         } while(0)
67
68 int save_options(const char *fname)
69 {
70         FILE *fp;
71
72         printf("writing config: %s\n", fname);
73
74         if(!(fp = fopen(fname, "wb"))) {
75                 fprintf(stderr, "failed to save options (%s): %s\n", fname, strerror(errno));
76         }
77         fprintf(fp, "options {\n");
78         fprintf(fp, "\tvideo {\n");
79         WROPT(2, "xres = %d", opt.xres, DEF_XRES);
80         WROPT(2, "yres = %d", opt.yres, DEF_YRES);
81         WROPT(2, "vsync = %d", opt.vsync, DEF_VSYNC);
82         WROPT(2, "fullscreen = %d", opt.fullscreen, DEF_FULLSCR);
83         fprintf(fp, "\t}\n");
84
85         fprintf(fp, "\tinput {\n");
86         WROPT(2, "mousespeed = %d", opt.mouse_speed, DEF_MOUSE_SPEED);
87         WROPT(2, "sballspeed = %d", opt.sball_speed, DEF_SBALL_SPEED);
88         fprintf(fp, "\t}\n");
89
90         fprintf(fp, "}\n");
91         fprintf(fp, "# v" "i:ts=4 sts=4 sw=4 noexpandtab:\n");
92
93         fclose(fp);
94         return 0;
95 }