aboutsummaryrefslogtreecommitdiff
path: root/src/example/loadfont.cpp
blob: 36d00dd1a53801f4aaca7549d864e1edd8b9f5ec (plain)
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
#include <SDL2/SDL_ttf.h>
#include <crepe/api/Text.h>
#include <crepe/facade/Font.h>
#include <crepe/facade/SDLContext.h>
#include <crepe/api/Asset.h>
#include <crepe/manager/Mediator.h>
#include <crepe/manager/ResourceManager.h>
#include <exception>
#include <iostream>
#include <optional>
#include <memory>
using namespace crepe;
int main() {

	// SDLFontContext font_facade;
	Mediator mediator;
	SDLContext sdl_context{mediator};
	// ComponentManager component_manager{mediator};
	ResourceManager resource_manager{mediator};
	try {
		// Correct way to create a unique pointer for Text
		std::unique_ptr<Text> label = std::make_unique<Text>(
			1, vec2(100, 100), vec2(0, 0), "OpenSymbol", Text::Data{},"test text", Asset(""));
		// std::cout << "Path: " << label->font.get_path() << std::endl;

		std::unique_ptr<Text> label2
			= std::make_unique<Text>(1, vec2(100, 100), vec2(0, 0),"fsaafdafsdafsdafsdasfdds", Text::Data{});
		Asset asset = Asset("test test");
		label->font = asset;
		std::cout << label->font.value().get_path() << std::endl;
		// label2->font = std::make_optional(asset);
		// std::cout << "Path: " << label2->font.get_path() << std::endl;
		// ResourceManager & resource_mgr = mediator.resource_manager;
		// const Font & res = resource_manager.get<Font>(label->font);
		// TTF_Font * test_font = res.get_font();
		// if (test_font == NULL) {
		// 	std::cout << "error with font" << std::endl;
		// } else {
		// 	std::cout << "correct font retrieved" << std::endl;
		// }
	} catch (const std::exception & e) {
		std::cout << "Standard exception thrown: " << e.what() << std::endl;
	}

	return 0;
}