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 158 159
|
/* BatchDrawList.cpp
Copyright (c) 2017 by Michael Zahniser
Endless Sky is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later version.
Endless Sky is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "BatchDrawList.h"
#include "BatchShader.h"
#include "../Body.h"
#include "../Screen.h"
#include "../image/Sprite.h"
#include <cmath>
using namespace std;
namespace {
void Push(vector<float> &v, const Point &pos, float s, float t, float frame, float alpha)
{
v.push_back(pos.X());
v.push_back(pos.Y());
v.push_back(s);
v.push_back(t);
v.push_back(frame);
v.push_back(alpha);
}
}
// Clear the list, also setting the global time step for animation.
void BatchDrawList::Clear(int step, double zoom)
{
data.clear();
this->step = step;
this->zoom = zoom;
isHighDPI = (Screen::IsHighResolution() ? zoom > .5 : zoom > 1.);
}
void BatchDrawList::SetCenter(const Point ¢er)
{
this->center = center;
}
// Add an unswizzled object based on the Body class.
bool BatchDrawList::Add(const Body &body, float clip)
{
// TODO: Rather than compensate using 1/2 the Visual | Projectile velocity, we should
// extend the Sprite class to know its reference point. For most sprites, this will be
// the horizontal and vertical middle of the sprite, but for "laser" projectiles, this
// would be the middle of a sprite end. Adding such support will then help resolve issues
// with drawing things such as very large effects that simulate projectiles. This offset
// exists because we use the current position of a projectile, but have varied expectations
// of what that position means. For a "laser" projectile, it is created at the ship hardpoint but
// we want it to be drawn with its center halfway to the target. For longer-lived projectiles, we
// expect the position to be the actual location of the projectile at that point in time.
Point position = (body.Position() + .5 * body.Velocity() - center) * zoom;
return Add(body, position, clip);
}
// TODO: Once we have sprite reference positions, this method will not be needed.
bool BatchDrawList::AddVisual(const Body &visual)
{
return Add(visual, (visual.Position() - center) * zoom, 1.f);
}
// Draw all the items in this list.
void BatchDrawList::Draw() const
{
BatchShader::Bind();
for(const pair<const Sprite * const, vector<float>> &it : data)
BatchShader::Add(it.first, isHighDPI, it.second);
BatchShader::Unbind();
}
bool BatchDrawList::Cull(const Body &body, const Point &position) const
{
if(!body.HasSprite() || !body.Zoom())
return true;
Point unit = body.Unit();
// Cull sprites that are completely off screen, to reduce the number of draw
// calls that we issue (which may be the bottleneck on some systems).
Point size(
fabs(unit.X() * body.Height()) + fabs(unit.Y() * body.Width()),
fabs(unit.X() * body.Width()) + fabs(unit.Y() * body.Height()));
Point topLeft = position - size * zoom;
Point bottomRight = position + size * zoom;
if(bottomRight.X() < Screen::Left() || bottomRight.Y() < Screen::Top())
return true;
if(topLeft.X() > Screen::Right() || topLeft.Y() > Screen::Bottom())
return true;
return false;
}
bool BatchDrawList::Add(const Body &body, Point position, float clip)
{
if(Cull(body, position))
return false;
// Get the data vector for this particular sprite.
vector<float> &v = data[body.GetSprite()];
// The sprite frame is the same for every vertex.
float frame = body.GetFrame(step);
// Get unit vectors in the direction of the object's width and height.
Point unit = body.Unit() * zoom;
Point uw = Point(-unit.Y(), unit.X()) * body.Width();
Point uh = unit * body.Height();
// Get the "bottom" corner, the one that won't be clipped.
Point topLeft = position - (uw + uh);
// Scale the vectors and apply clipping to the "height" of the sprite.
uw *= 2.;
uh *= 2.f * clip;
// Calculate the other three corners.
Point topRight = topLeft + uw;
Point bottomLeft = topLeft + uh;
Point bottomRight = bottomLeft + uw;
float alpha = body.Alpha(center);
// Push two copies of the first and last vertices to mark the break between
// the sprites.
Push(v, topLeft, 0.f, 1.f, frame, alpha);
Push(v, topLeft, 0.f, 1.f, frame, alpha);
Push(v, topRight, 1.f, 1.f, frame, alpha);
Push(v, bottomLeft, 0.f, 1.f - clip, frame, alpha);
Push(v, bottomRight, 1.f, 1.f - clip, frame, alpha);
Push(v, bottomRight, 1.f, 1.f - clip, frame, alpha);
return true;
}
|