blob: 23855134c512e54a6717fdaf3e0e10825e5822c9 (
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
//
//============================================================
#ifndef MAME_RENDER_BGFX_SUPPRESSORREADER_H
#define MAME_RENDER_BGFX_SUPPRESSORREADER_H
#pragma once
#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, const 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, const 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 // MAME_RENDER_BGFX_SUPPRESSORREADER_H
|