blob: cf7d641997c0ca3a4fea68590aeabb588ba1a7ca (
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
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// suppressorreader.h - Reads pass-skipping conditions
//
//============================================================
#pragma once
#ifndef __DRAWBGFX_SUPPRESSOR_READER__
#define __DRAWBGFX_SUPPRESSOR_READER__
#include "statereader.h"
#include <string>
#include <map>
class bgfx_suppressor;
class bgfx_slider;
class suppressor_reader : public state_reader
{
public:
static bgfx_suppressor* read_from_value(const Value& value, std::string prefix, std::map<std::string, bgfx_slider*>& sliders);
private:
static bool get_values(const Value& value, std::string prefix, std::string name, int* values, const int count);
static bool validate_parameters(const Value& value, std::string prefix);
static const int CONDITION_COUNT = 2;
static const string_to_enum CONDITION_NAMES[CONDITION_COUNT];
static const int COMBINE_COUNT = 2;
static const string_to_enum COMBINE_NAMES[COMBINE_COUNT];
};
#endif // __DRAWBGFX_SUPPRESSOR_READER__
|