summaryrefslogtreecommitdiff
path: root/convmaterial.c
blob: fde7223a9438391f6c6c0bdd158ebdf8f2da4577 (plain) (blame)
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
#include <stdio.h>
#include <stdlib.h>

#include "cfg/cfgparse.h"
#include "material.h"
#include "memory.h"
#include "plat.h"
#include "str.h"

void parse(cfg_Object* cfg, FILE* f) {
	Material_File r;
	zero(&r, sizeof r);
	fwrite(&r, sizeof r, 1, f);
	r.magic[0] = 'M';
	r.magic[1] = 'T';
	r.magic[2] = 'R';
	r.magic[3] = 'L';
	const char* albedo_tex = "";
	const char* ao_tex = "";
	const char* metal_tex = "";
	const char* rough_tex = "";
	const char* normal_tex = "";
	for (; cfg; cfg = cfg->next) {
		if (string_equal(cfg->name, "params")) {
			r.metalness = find_float_default(cfg, "metalness", 0.0f);
			r.roughness = find_float_default(cfg, "roughness", 0.0f);
			r.ao = find_float_default(cfg, "ao", 1.0f);
			r.albedo = find_colour_default(cfg, "albedo", "ffffff");
		} else if (string_equal(cfg->name, "textures")) {
			albedo_tex = find_string_default(cfg, "albedo", "");
			ao_tex     = find_string_default(cfg, "ao",     "");
			metal_tex  = find_string_default(cfg, "metal",  "");
			rough_tex  = find_string_default(cfg, "rough",  "");
			normal_tex = find_string_default(cfg, "normal", "");
		}
	}
	r.albedo_tex_len = string_len(albedo_tex);
	r.ao_tex_len     = string_len(ao_tex);
	r.metal_tex_len  = string_len(metal_tex);
	r.rough_tex_len  = string_len(rough_tex);
	r.normal_tex_len = string_len(normal_tex);
	fseek(f, 0, SEEK_SET);
	fwrite(&r, sizeof r, 1, f);
	fwrite(albedo_tex, 1, r.albedo_tex_len, f);
	fwrite(ao_tex,     1, r.ao_tex_len,     f);
	fwrite(metal_tex,  1, r.metal_tex_len,  f);
	fwrite(rough_tex,  1, r.rough_tex_len,  f);
	fwrite(normal_tex, 1, r.albedo_tex_len, f);
}

int main(int argc, const char** argv) {
	int mem_size = 1024 * 1024;
	void* mem = malloc(mem_size);
	Arena arena;
	cfg_Object* cfg;
	FILE* infile, * outfile;
	char* src;
	int size;
	init_arena(&arena, mem, mem_size);
	if (argc < 3) {
		print_err("Usage: %s infile outfile format.\n", argv[0]);
		return 1;
	}
	infile = fopen(argv[1], "r");
	if (!infile) {
		print_err("Failed to open %s.\n", argv[1]);
		return 2;
	}
	fseek(infile, 0, SEEK_END);
	size = ftell(infile);
	rewind(infile);
	src = malloc(size + 1);
	src[fread(src, 1, size, infile)] = 0;
	cfg = cfg_parse(src, &arena);
	outfile = fopen(argv[2], "wb");
	if (!outfile) {
		print_err("Failed to open %s.\n", argv[1]);
		return 3;
	}
	parse(cfg, outfile);
	fclose(outfile);
	return 0;
}