aboutsummaryrefslogtreecommitdiff
path: root/src/example/rendering_particle.cpp
blob: 07e43a193efa8b11bc01eed1ded5700e85d3a53e (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include "api/Animator.h"
#include "api/Camera.h"
#include "api/LoopManager.h"
#include "api/LoopTimer.h"
#include "system/AnimatorSystem.h"
#include "system/ParticleSystem.h"
#include <SDL2/SDL_timer.h>
#include <crepe/ComponentManager.h>

#include <crepe/Component.h>
#include <crepe/api/Color.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/ParticleEmitter.h>
#include <crepe/api/Rigidbody.h>
#include <crepe/api/Sprite.h>
#include <crepe/api/Texture.h>
#include <crepe/api/Transform.h>
#include <crepe/system/RenderSystem.h>
#include <crepe/types.h>

using namespace crepe;
using namespace std;

/*
	auto & test = game_object.add_component<ParticleEmitter>(ParticleEmitter::Data{
		.position = {0, 0},
		.max_particles = 10,
		.emission_rate = 0.1,
		.min_speed = 6,
		.max_speed = 20,
		.min_angle = -20,
		.max_angle = 20,
		.begin_lifespan = 0,
		.end_lifespan = 60,
		.force_over_time = vec2{0, 0},
		.boundary{
			.width = 1000,
			.height = 1000,
			.offset = vec2{0, 0},
			.reset_on_exit = false,
		},
		.sprite = test_sprite,
	});
	*/

class TestScene : public Scene {
public:
	void load_scene() {
		ComponentManager & mgr = this->component_manager;
		GameObject game_object = mgr.new_object("", "", vec2{0, 0}, 0, 1);

		Color color(255, 255, 255, 255);

		auto img = Texture("asset/spritesheet/pokemon_spritesheet.png");

		Sprite & test_sprite = game_object.add_component<Sprite>(
			img, Sprite::Data{
					 .color = color,
					 .flip = Sprite::FlipSettings{false, false},
					 .sorting_in_layer = 2,
					 .order_in_layer = 2,
					 .size = {0, 100},
					 .angle_offset = 0,
				 });

		auto & anim = game_object.add_component<Animator>(test_sprite, 4, 4,
														  Animator::Data{
															  .fps = 1,
															  .looping = false,
														  });
		anim.set_anim(2);
		anim.active = false;

		auto & cam = game_object.add_component<Camera>(ivec2{1280, 720}, vec2{400, 400},
													   Camera::Data{
														   .bg_color = Color::WHITE,
													   });
	}

	string get_name() const { return "TestScene"; };
};

int main(int argc, char * argv[]) {
	LoopManager engine;
	engine.add_scene<TestScene>();
	engine.start();

	/*
	game_object
		.add_component<Sprite>(make_shared<Texture>("asset/texture/img.png"), color,
		.add_component<Sprite>(make_shared<Texture>("asset/texture/img.png"), color,
							   FlipSettings{false, false})
		.order_in_layer
		= 6;
	*/

	return 0;
}