-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraceGraphics.cpp
157 lines (124 loc) · 5.47 KB
/
raceGraphics.cpp
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#include <SFML/Graphics.hpp>
#include "comphorse_yifan.h"
#include "userhorse.h"
#include "racetrack.h"
#include "user.h"
#include "horse.h"
#include "raceGraphics.h"
void graphics::draw_horses (Racetrack track) { // Function to draw horses
sf::RenderWindow window(sf::VideoMode(1800, 440), "My Program"); // Create window
window.setFramerateLimit(60); // Set framerate limit to 60
sf::Texture horse; // Create texture for horse
horse.loadFromFile("horse2.png"); // Load horse texture
sf::Texture horseSheet; // Create texture for horse sheet
horseSheet.loadFromFile("croppedSheet.png"); // Load horse texture (V2)
sf::Texture background; // Create texture for background
background.loadFromFile("grass2.png"); // Load background texture
background.setRepeated(true); // Set background texture to repeat
sf::IntRect backgroundRect(0, 0, 1800, 440); // Create rectangle for background texture
sf::Sprite backgrounds(background, backgroundRect); // Create sprite for background
sf::IntRect rectSourceSprite(0, 0, 225, 150); // Create rectangle for horse texture, allows to select specific rectangle on sprite sheet
sf::Sprite horse1(horseSheet, rectSourceSprite); // Create sprite for horse
sf::Sprite horse2(horseSheet, rectSourceSprite);
sf::Sprite horse3(horseSheet, rectSourceSprite);
sf::Sprite horse4(horseSheet, rectSourceSprite);
sf::Sprite horse5(horseSheet, rectSourceSprite);
sf::Sprite horse6(horseSheet, rectSourceSprite);
sf::Sprite horse7(horseSheet, rectSourceSprite);
sf::Sprite horse8(horseSheet, rectSourceSprite);
sf::Clock clock; // Create clock
horse1.setColor(sf::Color(255, 0, 0, 255)); // Set user horse colour to red
horse2.setColor(sf::Color(0, 0, 0, 255)); // Set horse colour to black
horse3.setColor(sf::Color(0, 0, 0, 255));
horse4.setColor(sf::Color(0, 0, 0, 255));
horse5.setColor(sf::Color(0, 0, 0, 255));
horse6.setColor(sf::Color(0, 0, 0, 255));
horse7.setColor(sf::Color(0, 0, 0, 255));
horse8.setColor(sf::Color(0, 0, 0, 255));
sf::Vector2f Position7(0, 0); // Set position of horses (variable)
sf::Vector2f Position6(0, 55);
sf::Vector2f Position3(0, 110);
sf::Vector2f Position8(0, 165);
sf::Vector2f Position5(0, 220);
sf::Vector2f Position2(0, 275);
sf::Vector2f Position1(0, 330);
sf::Vector2f Position4(0, 385);
horse1.setPosition(0, 330); // Set position of horses
horse1.setScale(0.5, 0.5);
horse2.setPosition(Position2);
horse2.setScale(0.5, 0.5);
horse3.setPosition(Position3);
horse3.setScale(0.5, 0.5);
horse4.setPosition(Position4);
horse4.setScale(0.5, 0.5);
horse5.setPosition(Position5);
horse5.setScale(0.5, 0.5);
horse6.setPosition(Position6);
horse6.setScale(0.5, 0.5);
horse7.setPosition(Position7);
horse7.setScale(0.5, 0.5);
horse8.setPosition(Position8);
horse8.setScale(0.5, 0.5);
float xVelocity1 = track.racetrack_times[0]; // Set velocity of horses
float xVelocity2 = track.racetrack_times[1];
float xVelocity3 = track.racetrack_times[2];
float xVelocity4 = track.racetrack_times[3];
float xVelocity5 = track.racetrack_times[4];
float xVelocity6 = track.racetrack_times[5];
float xVelocity7 = track.racetrack_times[6];
float xVelocity8 = track.racetrack_times[7];
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed) window.close();
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Escape)) window.close();
}
if(clock.getElapsedTime().asSeconds() > 0.07f) { // Set animation speed, tolling speed for sheet
if (rectSourceSprite.left >= 1350) // If rectangle is at end of sheet, start at beginning
rectSourceSprite.left = 0;
else
rectSourceSprite.left += 225; // Move rectangle to next frame on sheet
horse1.setTextureRect(rectSourceSprite); // Set texture rectangle
horse2.setTextureRect(rectSourceSprite);
horse3.setTextureRect(rectSourceSprite);
horse4.setTextureRect(rectSourceSprite);
horse5.setTextureRect(rectSourceSprite);
horse6.setTextureRect(rectSourceSprite);
horse7.setTextureRect(rectSourceSprite);
horse8.setTextureRect(rectSourceSprite);
clock.restart(); // Restart clock
}
// Physics
Position1.x += xVelocity1;
horse1.setPosition(Position1);
Position2.x += xVelocity2;
horse2.setPosition(Position2);
Position3.x += xVelocity3;
horse3.setPosition(Position3);
Position4.x += xVelocity4;
horse4.setPosition(Position4);
Position5.x += xVelocity5;
horse5.setPosition(Position5);
Position6.x += xVelocity6;
horse6.setPosition(Position6);
Position7.x += xVelocity7;
horse7.setPosition(Position7);
Position8.x += xVelocity8;
horse8.setPosition(Position8);
// Render
window.clear(); // Clear window
window.draw(backgrounds); // Draw background
window.draw(horse1); // Draw horses
window.draw(horse2);
window.draw(horse3);
window.draw(horse4);
window.draw(horse5);
window.draw(horse6);
window.draw(horse7);
window.draw(horse8);
window.display(); // Display window
}
return; // Terminates
}