HitBox added. acceleration of collision detection in 20 times.
parent
1ad591ed04
commit
c12fcc857d
|
@ -10,10 +10,10 @@ using namespace std;
|
|||
int main() {
|
||||
Shooter game;
|
||||
|
||||
//game.create(1280, 720, ShooterConsts::PROJECT_NAME);
|
||||
game.create(1280, 720, ShooterConsts::PROJECT_NAME);
|
||||
//game.create(1920, 1080, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen);
|
||||
|
||||
game.create(2048, 1152, ShooterConsts::PROJECT_NAME, false);
|
||||
//game.create(2048, 1152, ShooterConsts::PROJECT_NAME, true);
|
||||
//game.create(3072, 1920, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -162,7 +162,7 @@ void Engine::printDebugInfo() const {
|
|||
Vec2D{xPos, yPos + height + height * i},
|
||||
{static_cast<sf::Uint8>(255 * width / timerWidth),
|
||||
static_cast<sf::Uint8>(255 * (1 - width / timerWidth)),
|
||||
0, 100});
|
||||
0, 150});
|
||||
|
||||
|
||||
screen->drawText(
|
||||
|
@ -170,7 +170,7 @@ void Engine::printDebugInfo() const {
|
|||
std::to_string((int) (1.0 / timer.elapsedMilliseconds())) + " / s \t (" +
|
||||
std::to_string((int) (100 * timer.elapsedMilliseconds() / totalTime)) + "%)",
|
||||
Vec2D{xPos + 10, yPos + height * i + 5}, 30,
|
||||
sf::Color(0, 0, 0, 100));
|
||||
sf::Color(0, 0, 0, 200));
|
||||
|
||||
i++;
|
||||
timeSum += timer.elapsedMilliseconds();
|
||||
|
@ -183,13 +183,13 @@ void Engine::printDebugInfo() const {
|
|||
Vec2D{xPos, yPos + height + height * i},
|
||||
{static_cast<sf::Uint8>(255 * width / timerWidth),
|
||||
static_cast<sf::Uint8>(255 * (1 - width / timerWidth)),
|
||||
0, 100});
|
||||
0, 150});
|
||||
|
||||
|
||||
screen->drawText("other:\t" + std::to_string((int) (1.0 / (totalTime - timeSum))) + " / s \t (" +
|
||||
std::to_string((int) (100 * (totalTime - timeSum) / totalTime)) + "%)",
|
||||
Vec2D{xPos + 10, yPos + height * i + 5}, 30,
|
||||
sf::Color(0, 0, 0, 100));
|
||||
sf::Color(0, 0, 0, 200));
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ HitBox::HitBox(const Mesh &mesh) {
|
|||
void HitBox::_addIfUnique(const Vec3D &point) {
|
||||
bool addPoint = true;
|
||||
for(const auto& p : _hitBox) {
|
||||
if((p - point).sqrAbs() < Consts::EPS) {
|
||||
if(p == point) {
|
||||
addPoint = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue