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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
|
/* Body.cpp
Copyright (c) 2016 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 "Body.h"
#include "DataNode.h"
#include "DataWriter.h"
#include "GameData.h"
#include "image/Mask.h"
#include "image/MaskManager.h"
#include "pi.h"
#include "Random.h"
#include "image/Sprite.h"
#include "image/SpriteSet.h"
#include <algorithm>
#include <cmath>
using namespace std;
// Constructor, based on a Sprite.
Body::Body(const Sprite *sprite, Point position, Point velocity, Angle facing, double zoom, Point scale, double alpha)
: position(position), velocity(velocity), angle(facing), scale(scale), zoom(zoom),
alpha(alpha), sprite(sprite), randomize(true)
{
}
// Constructor, based on the animation from another Body object.
Body::Body(const Body &sprite, Point position, Point velocity, Angle facing, double zoom, Point scale, double alpha)
{
*this = sprite;
this->position = position;
this->velocity = velocity;
this->angle = facing;
this->zoom = zoom;
this->scale = scale * sprite.Scale();
this->alpha = alpha * sprite.alpha;
}
// Check that this Body has a sprite and that the sprite has at least one frame.
bool Body::HasSprite() const
{
return (sprite && sprite->Frames());
}
// Access the underlying Sprite object.
const Sprite *Body::GetSprite() const
{
return sprite;
}
// Get the width of this object, in world coordinates (i.e. taking zoom and scale into account).
double Body::Width() const
{
return static_cast<double>(sprite ? (.5f * zoom) * scale.X() * sprite->Width() : 0.f);
}
// Get the height of this object, in world coordinates (i.e. taking zoom and scale into account).
double Body::Height() const
{
return static_cast<double>(sprite ? (.5f * zoom) * scale.Y() * sprite->Height() : 0.f);
}
// Get the farthest a part of this sprite can be from its center.
double Body::Radius() const
{
return .5 * Point(Width(), Height()).Length();
}
// Which color swizzle should be applied to the sprite?
const Swizzle *Body::GetSwizzle() const
{
return swizzle;
}
bool Body::InheritsParentSwizzle() const
{
return inheritsParentSwizzle;
}
// Get the frame index for the given time step. If no time step is given, this
// will return the frame from the most recently given step.
float Body::GetFrame(int step) const
{
if(step >= 0)
SetStep(step);
return frame;
}
// Get the mask for the given time step. If no time step is given, this will
// return the mask from the most recently given step.
const Mask &Body::GetMask(int step) const
{
if(step >= 0)
SetStep(step);
static const Mask EMPTY;
int current = round(frame);
if(!sprite || current < 0)
return EMPTY;
const vector<Mask> &masks = GameData::GetMaskManager().GetMasks(sprite, Scale());
// Assume that if a masks array exists, it has the right number of frames.
return masks.empty() ? EMPTY : masks[current % masks.size()];
}
// Position, in world coordinates (zero is the system center).
const Point &Body::Position() const
{
return position;
}
// Velocity, in pixels per second.
const Point &Body::Velocity() const
{
return velocity;
}
const Point Body::Center() const
{
return -rotatedCenter + position;
}
// Direction this Body is facing in.
const Angle &Body::Facing() const
{
return angle;
}
// Unit vector in the direction this body is facing. This represents the scale
// and transform that should be applied to the sprite before drawing it.
Point Body::Unit() const
{
return angle.Unit() * (.5 * Zoom());
}
// Zoom factor. This controls how big the sprite should be drawn.
double Body::Zoom() const
{
return max(zoom, 0.f);
}
Point Body::Scale() const
{
return scale;
}
// Check if this object is marked for removal from the game.
bool Body::ShouldBeRemoved() const
{
return shouldBeRemoved;
}
// Store the government here too, so that collision detection that is based
// on the Body class can figure out which objects will collide.
const Government *Body::GetGovernment() const
{
return government;
}
// Load the sprite specification, including all animation attributes.
void Body::LoadSprite(const DataNode &node)
{
if(node.Size() < 2)
return;
sprite = SpriteSet::Get(node.Token(1));
// The only time the animation does not start on a specific frame is if no
// start frame is specified and it repeats. Since a frame that does not
// start at zero starts when the game started, it does not make sense for it
// to do that unless it is repeating endlessly.
for(const DataNode &child : node)
{
const string &key = child.Token(0);
bool hasValue = child.Size() >= 2;
if(key == "frame rate" && hasValue && child.Value(1) >= 0.)
frameRate = child.Value(1) / 60.;
else if(key == "frame time" && hasValue && child.Value(1) > 0.)
frameRate = 1. / child.Value(1);
else if(key == "delay" && hasValue && child.Value(1) > 0.)
delay = child.Value(1);
else if(key == "scale" && hasValue && child.Value(1) > 0.)
{
double scaleY = (child.Size() >= 3 && child.Value(2) > 0.) ? child.Value(2) : child.Value(1);
scale = Point(child.Value(1), scaleY);
}
else if(key == "start frame" && hasValue)
{
frameOffset += static_cast<float>(child.Value(1));
startAtZero = true;
}
else if(key == "random start frame")
randomize = true;
else if(key == "no repeat")
{
repeat = false;
startAtZero = true;
}
else if(key == "rewind")
rewind = true;
else if(key == "center" && child.Size() >= 3)
center = Point(child.Value(1), child.Value(2));
else if(key == "inherits parent swizzle")
inheritsParentSwizzle = true;
else
child.PrintTrace("Skipping unrecognized attribute:");
}
if(scale != Point(1., 1.))
GameData::GetMaskManager().RegisterScale(sprite, Scale());
}
// Save the sprite specification, including all animation attributes.
void Body::SaveSprite(DataWriter &out, const string &tag) const
{
if(!sprite)
return;
out.Write(tag, sprite->Name());
out.BeginChild();
{
if(frameRate != static_cast<float>(2. / 60.))
out.Write("frame rate", frameRate * 60.);
if(delay)
out.Write("delay", delay);
if(scale != Point(1., 1.))
out.Write("scale", scale.X(), scale.Y());
if(randomize)
out.Write("random start frame");
if(!repeat)
out.Write("no repeat");
if(rewind)
out.Write("rewind");
if(center)
out.Write("center", center.X(), center.Y());
if(inheritsParentSwizzle)
out.Write("inherits parent swizzle");
}
out.EndChild();
}
// Set the sprite.
void Body::SetSprite(const Sprite *sprite)
{
this->sprite = sprite;
currentStep = -1;
}
// Set the color swizzle.
void Body::SetSwizzle(const Swizzle *swizzle)
{
this->swizzle = swizzle;
}
double Body::Alpha(const Point &drawCenter) const
{
return alpha * DistanceAlpha(drawCenter);
}
double Body::DistanceAlpha(const Point &drawCenter) const
{
if(!distanceInvisible)
return 1.;
double distance = (drawCenter - position).Length();
return clamp<double>((distance - distanceInvisible) / (distanceVisible - distanceInvisible), 0., 1.);
}
bool Body::IsVisible(const Point &drawCenter) const
{
return DistanceAlpha(drawCenter) > 0.;
}
// Set the frame rate of the sprite. This is used for objects that just specify
// a sprite instead of a full animation data structure.
void Body::SetFrameRate(float framesPerSecond)
{
frameRate = framesPerSecond / 60.f;
}
// Add the given amount to the frame rate.
void Body::AddFrameRate(float framesPerSecond)
{
frameRate += framesPerSecond / 60.f;
}
void Body::PauseAnimation()
{
++pause;
}
// Mark this object to be removed from the game.
void Body::MarkForRemoval()
{
shouldBeRemoved = true;
}
// Mark this object to not be removed from the game.
void Body::UnmarkForRemoval()
{
shouldBeRemoved = false;
}
// Turn this object around its center of rotation.
void Body::Turn(double amount)
{
angle += amount;
if(!center)
return;
auto RotatePointAroundOrigin = [](Point &toRotate, double radians) -> Point {
float si = sin(radians);
float co = cos(radians);
float newX = toRotate.X() * co - toRotate.Y() * si;
float newY = toRotate.X() * si + toRotate.Y() * co;
return Point(newX, newY);
};
rotatedCenter = -RotatePointAroundOrigin(center, (angle - amount).Degrees() * TO_RAD);
position -= rotatedCenter;
rotatedCenter = RotatePointAroundOrigin(rotatedCenter, Angle(amount).Degrees() * TO_RAD);
position += rotatedCenter;
}
void Body::Turn(const Angle &amount)
{
Turn(amount.Degrees());
}
// Set the current time step.
void Body::SetStep(int step) const
{
// If the animation is paused, reduce the step by however many frames it has
// been paused for.
step -= pause;
// If the step is negative or there is no sprite, do nothing. This updates
// and caches the mask and the frame so that if further queries are made at
// this same time step, we don't need to redo the calculations.
if(step == currentStep || step < 0 || !sprite || !sprite->Frames())
return;
currentStep = step;
// If the sprite only has one frame, no need to animate anything.
float frames = sprite->Frames();
if(frames <= 1.f)
{
frame = 0.f;
return;
}
float lastFrame = frames - 1.f;
// This is the number of frames per full cycle. If rewinding, a full cycle
// includes the first and last frames once and every other frame twice.
float cycle = (rewind ? 2.f * lastFrame : frames) + delay;
// If this is the very first step, fill in some values that we could not set
// until we knew the sprite's frame count and the starting step.
if(randomize)
{
randomize = false;
// The random offset can be a fractional frame.
frameOffset += static_cast<float>(Random::Real()) * cycle;
}
else if(startAtZero)
{
startAtZero = false;
// Adjust frameOffset so that this step's frame is exactly 0 (no fade).
frameOffset -= frameRate * step;
}
// Figure out what fraction of the way in between frames we are. Avoid any
// possible floating-point glitches that might result in a negative frame.
frame = max(0.f, frameRate * step + frameOffset);
// If repeating, wrap the frame index by the total cycle time.
if(repeat)
frame = fmod(frame, cycle);
if(!rewind)
{
// If not repeating, frame should never go higher than the index of the
// final frame.
if(!repeat)
frame = min(frame, lastFrame);
else if(frame >= frames)
{
// If we're in the delay portion of the loop, set the frame to 0.
frame = 0.f;
}
}
else if(frame >= lastFrame)
{
// In rewind mode, once you get to the last frame, count backwards.
// Regardless of whether we're repeating, if the frame count gets to
// be less than 0, clamp it to 0.
frame = max(0.f, lastFrame * 2.f - frame);
}
}
|