summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/bgfx/statereader.h
blob: 5b9a5f5625d6d55f202c598da54336f0a2a09fad (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
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
#pragma once

#ifndef __DRAWBGFX_STATE_READER__
#define __DRAWBGFX_STATE_READER__

#include "emu.h"

#include <string>
#include "rapidjson/document.h"

using namespace rapidjson;

class state_reader
{
protected:
	struct string_to_enum
	{
		std::string m_string;
		const UINT64 m_enum;
	};

	static void validate_array_parameter(const Value& value, std::string type_name, std::string name, const int count);
    static void validate_float_parameter(const Value& value, std::string type_name, std::string name);
    static void validate_int_parameter(const Value& value, std::string type_name, std::string name);
    static void validate_string_parameter(const Value& value, std::string type_name, std::string name);
	static void validate_boolean_parameter(const Value& value, std::string type_name, std::string name);

	static bool get_bool(const Value& value, const std::string name, const bool default_value);
    static void get_float(const Value& value, const std::string name, float* out, float* default_value, const int count = 1);
    static int get_int(const Value& value, const std::string name, int default_value);
    static std::string get_string(const Value& value, const std::string name, const std::string default_value);

	static uint64_t get_enum_from_value(const Value& value, std::string name, const uint64_t default_value, const string_to_enum* enums, const int count);
	static uint64_t get_param_from_string(std::string value, const string_to_enum* enums, const int count);

protected:
	static bool READER_CHECK(bool condition, const char* format, ...)
	{
		if (!condition)
		{
			va_list ap;
			va_start(ap, format);
			char buf[2048];
			vsnprintf(buf, 2048, format, ap);
            osd_printf_error("Error: %s\n", buf);
			va_end(ap);
		}
		return condition;
	}

private:
	static void get_vec_values(const Value& value_array, float* data, const unsigned int count);
};

#endif // __DRAWBGFX_STATE_READER__