forked from cataclysmbnteam/Cataclysm-BN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
font_loader.h
44 lines (37 loc) · 1.08 KB
/
font_loader.h
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
#pragma once
#ifndef CATA_SRC_FONT_LOADER_H
#define CATA_SRC_FONT_LOADER_H
#include <algorithm>
#include <stdexcept>
#include <string>
#include <vector>
#include "debug.h"
#include "filesystem.h"
#include "fstream_utils.h"
#include "json.h"
#include "path_info.h"
#include "cata_utility.h"
// Ensure that unifont is always loaded as a fallback font to prevent users from shooting themselves in the foot
void ensure_unifont_loaded( std::vector<std::string> &font_list );
class font_loader
{
public:
bool fontblending = false;
std::vector<std::string> typeface;
std::vector<std::string> map_typeface;
std::vector<std::string> overmap_typeface;
int fontwidth = 8;
int fontheight = 16;
int fontsize = 16;
int map_fontwidth = 8;
int map_fontheight = 16;
int map_fontsize = 16;
int overmap_fontwidth = 8;
int overmap_fontheight = 16;
int overmap_fontsize = 16;
private:
void load_throws( const std::string &path );
public:
void load();
};
#endif // CATA_SRC_FONT_LOADER_H