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
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include <algorithm>
#include "SpherePartProjectile.h"
#include "Rendering/GlobalRendering.h"
#include "Rendering/ProjectileDrawer.h"
#include "Rendering/GL/VertexArray.h"
#include "Rendering/Textures/TextureAtlas.h"
using std::min;
CR_BIND_DERIVED(CSpherePartProjectile, CProjectile, (NULL, ZeroVector, 0, 0, 0.0f, 0.0f, 0, ZeroVector))
CR_REG_METADATA(CSpherePartProjectile, (
CR_MEMBER(centerPos),
CR_MEMBER(vectors),
CR_MEMBER(color),
CR_MEMBER(sphereSize),
CR_MEMBER(expansionSpeed),
CR_MEMBER(xbase),
CR_MEMBER(ybase),
CR_MEMBER(baseAlpha),
CR_MEMBER(age),
CR_MEMBER(ttl),
CR_MEMBER(texx),
CR_MEMBER(texy),
CR_RESERVED(16)
))
CSpherePartProjectile::CSpherePartProjectile(
const CUnit* owner,
const float3& centerPos,
int xpart,
int ypart,
float expansionSpeed,
float alpha,
int ttl,
const float3& color
):
CProjectile(centerPos, ZeroVector, owner, false, false, false),
centerPos(centerPos),
color(color),
sphereSize(expansionSpeed),
expansionSpeed(expansionSpeed),
xbase(xpart),
ybase(ypart),
baseAlpha(alpha),
age(0),
ttl(ttl)
{
deleteMe = false;
checkCol = false;
for(int y = 0; y < 5; ++y) {
const float yp = (y + ypart) / 16.0f*PI - PI/2;
for (int x = 0; x < 5; ++x) {
float xp = (x + xpart) / 32.0f*2*PI;
vectors[y*5 + x] = float3(math::sin(xp)*math::cos(yp), math::sin(yp), math::cos(xp)*math::cos(yp));
}
}
pos = centerPos+vectors[12] * sphereSize;
drawRadius = 60;
texx = projectileDrawer->sphereparttex->xstart + (projectileDrawer->sphereparttex->xend - projectileDrawer->sphereparttex->xstart) * 0.5f;
texy = projectileDrawer->sphereparttex->ystart + (projectileDrawer->sphereparttex->yend - projectileDrawer->sphereparttex->ystart) * 0.5f;
}
void CSpherePartProjectile::Update()
{
age++;
if (age >= ttl) {
deleteMe = true;
}
sphereSize += expansionSpeed;
pos = centerPos+vectors[12] * sphereSize;
}
void CSpherePartProjectile::Draw()
{
unsigned char col[4];
va->EnlargeArrays(4*4*4, 0, VA_SIZE_TC);
const float interSize = sphereSize + expansionSpeed * globalRendering->timeOffset;
for (int y = 0; y < 4; ++y) {
for (int x = 0; x < 4; ++x) {
float alpha =
baseAlpha *
(1.0f - min(1.0f, float(age + globalRendering->timeOffset) / (float) ttl)) *
(1.0f - math::fabs(y + ybase - 8.0f) / 8.0f * 1.0f);
col[0] = (unsigned char) (color.x * 255.0f * alpha);
col[1] = (unsigned char) (color.y * 255.0f * alpha);
col[2] = (unsigned char) (color.z * 255.0f * alpha);
col[3] = ((unsigned char) (40 * alpha)) + 1;
va->AddVertexQTC(centerPos + vectors[y*5 + x] * interSize, texx, texy, col);
va->AddVertexQTC(centerPos + vectors[y*5 + x + 1] * interSize, texx, texy, col);
alpha = baseAlpha * (1.0f - min(1.0f, (float)(age + globalRendering->timeOffset) / (float) ttl)) * (1 - math::fabs(y + 1 + ybase - 8.0f) / 8.0f*1.0f);
col[0] = (unsigned char) (color.x * 255.0f * alpha);
col[1] = (unsigned char) (color.y * 255.0f * alpha);
col[2] = (unsigned char) (color.z * 255.0f * alpha);
col[3] = ((unsigned char) (40 * alpha)) + 1;
va->AddVertexQTC(centerPos+vectors[(y + 1)*5 + x + 1] * interSize, texx, texy, col);
va->AddVertexQTC(centerPos+vectors[(y + 1)*5 + x] * interSize, texx, texy, col);
}
}
}
void CSpherePartProjectile::CreateSphere(const CUnit* owner, int ttl, float alpha, float expansionSpeed, float3 pos, float3 color)
{
for (int y = 0; y < 16; y += 4) {
for (int x = 0; x < 32; x += 4) {
new CSpherePartProjectile(owner, pos, x, y, expansionSpeed, alpha, ttl, color);
}
}
}
CSpherePartSpawner::CSpherePartSpawner()
: CProjectile()
, alpha(0.0f)
, ttl(0)
, expansionSpeed(0.0f)
, color(ZeroVector)
{
}
CR_BIND_DERIVED(CSpherePartSpawner, CProjectile, )
CR_REG_METADATA(CSpherePartSpawner,
(
CR_MEMBER_BEGINFLAG(CM_Config),
CR_MEMBER(alpha),
CR_MEMBER(ttl),
CR_MEMBER(expansionSpeed),
CR_MEMBER(color),
CR_MEMBER_ENDFLAG(CM_Config)
))
void CSpherePartSpawner::Init(const CUnit* owner, const float3& offset)
{
CProjectile::Init(owner, offset);
deleteMe = true;
CSpherePartProjectile::CreateSphere(owner, ttl, alpha, expansionSpeed, pos, color);
}
|