File include/particle.h changed (mode: 100644) (index 6070bc5..b5629e7) |
... |
... |
class ParticleTemplate { |
43 |
43 |
double endMass = 1.0; |
double endMass = 1.0; |
44 |
44 |
double maxAge = DBL_MAX; |
double maxAge = DBL_MAX; |
45 |
45 |
double damage = 0.0; |
double damage = 0.0; |
|
46 |
|
double frequency = 0.0; // Bursts per second. Only used by particle emitters. |
46 |
47 |
ParticleTemplate( const std::string &text = "" ); |
ParticleTemplate( const std::string &text = "" ); |
47 |
48 |
}; |
}; |
48 |
49 |
|
|
|
... |
... |
class ParticleServer { |
82 |
83 |
ParticleServer(); |
ParticleServer(); |
83 |
84 |
}; |
}; |
84 |
85 |
|
|
|
86 |
|
class ParticleEmitter { |
|
87 |
|
public: |
|
88 |
|
ParticleServer *ps; // Set in constructor. |
|
89 |
|
ParticleTemplate pt_main; // Set in constructor. |
|
90 |
|
ParticleTemplate pt_impact; // Set in constructor. |
|
91 |
|
linalg::vec<double,3> translation = {0.0, 0.0, 0.0}; |
|
92 |
|
double counter = 0.0; |
|
93 |
|
void emit( double d, void *userptr = nullptr ); |
|
94 |
|
ParticleEmitter( |
|
95 |
|
ParticleServer *_ps = nullptr, |
|
96 |
|
ParticleTemplate _pt_main = ParticleTemplate(), |
|
97 |
|
ParticleTemplate _pt_impact = ParticleTemplate() ); |
|
98 |
|
}; |
|
99 |
|
|
85 |
100 |
// Implementation begins here. |
// Implementation begins here. |
86 |
101 |
|
|
87 |
102 |
#ifdef PARTICLE_IMPLEMENTATION |
#ifdef PARTICLE_IMPLEMENTATION |
|
... |
... |
ParticleTemplate::ParticleTemplate( const std::string &text ){ |
132 |
147 |
if( info["damage"] ){ |
if( info["damage"] ){ |
133 |
148 |
damage = info["damage"].getDouble(); |
damage = info["damage"].getDouble(); |
134 |
149 |
} |
} |
|
150 |
|
if( info["frequency"] ){ |
|
151 |
|
frequency = info["frequency"].getDouble(); |
|
152 |
|
} |
135 |
153 |
|
|
136 |
154 |
jsonFreeDocument( &allocatedDocument ); |
jsonFreeDocument( &allocatedDocument ); |
137 |
155 |
} |
} |
|
... |
... |
ParticleServer::ParticleServer(){ |
263 |
281 |
seed = std::time( nullptr ); |
seed = std::time( nullptr ); |
264 |
282 |
} |
} |
265 |
283 |
|
|
|
284 |
|
// Emit a burst of particles at pt_main's frequency. TODO: pt_impact bursts |
|
285 |
|
void ParticleEmitter::emit( double d, void *userptr ){ |
|
286 |
|
if(!ps) return; |
|
287 |
|
const double period = 1.0 / pt_main.frequency; |
|
288 |
|
counter += d; |
|
289 |
|
if( counter > period ){ |
|
290 |
|
counter = std::fmod( counter, period ); |
|
291 |
|
ps->addOmniBurst( |
|
292 |
|
pt_main.num, pt_main.vel, translation, |
|
293 |
|
pt_main.startScale, pt_main.endScale, |
|
294 |
|
pt_main.startMass, pt_main.endMass, pt_main.maxAge, |
|
295 |
|
pt_main.damage, userptr ); |
|
296 |
|
} |
|
297 |
|
} |
|
298 |
|
|
|
299 |
|
ParticleEmitter::ParticleEmitter( |
|
300 |
|
ParticleServer *_ps, |
|
301 |
|
ParticleTemplate _pt_main, |
|
302 |
|
ParticleTemplate _pt_impact ){ |
|
303 |
|
ps = _ps; |
|
304 |
|
pt_main = _pt_main; |
|
305 |
|
pt_impact = _pt_impact; |
|
306 |
|
} |
|
307 |
|
|
266 |
308 |
#endif // PARTICLE_IMPLEMENTATION |
#endif // PARTICLE_IMPLEMENTATION |
267 |
309 |
|
|
268 |
310 |
#endif // PARTICLE_H |
#endif // PARTICLE_H |
File src/fdungeon.cpp changed (mode: 100644) (index d157078..d9b3cc4) |
... |
... |
struct Agent { |
128 |
128 |
std::map<std::string,double> ammo; // Ammo counts (to be displayed as properties of weapons and avoid inventory clutter). |
std::map<std::string,double> ammo; // Ammo counts (to be displayed as properties of weapons and avoid inventory clutter). |
129 |
129 |
std::map<std::string,double> skills; // "Skills" affect combat. Can also be used to store quest progress. |
std::map<std::string,double> skills; // "Skills" affect combat. Can also be used to store quest progress. |
130 |
130 |
std::string dungeonFile; // The last dungeon the agent was seen in. |
std::string dungeonFile; // The last dungeon the agent was seen in. |
|
131 |
|
std::string particleEmitterFile; |
|
132 |
|
ParticleEmitter particleEmitter; |
131 |
133 |
std::string avatarFile; |
std::string avatarFile; |
132 |
134 |
Avatar avatar; |
Avatar avatar; |
133 |
135 |
std::string modelFile; |
std::string modelFile; |
|
... |
... |
Agent *Dungeon::parseAgent( const std::string &text, std::string filePath, linal |
2122 |
2124 |
a->skills[viewToString( skill.name )] = skill.value.getDouble(); |
a->skills[viewToString( skill.name )] = skill.value.getDouble(); |
2123 |
2125 |
} |
} |
2124 |
2126 |
} |
} |
2125 |
|
// Load the agent's dungeon file string. |
|
|
2127 |
|
// Set the agent's dungeon file string. |
2126 |
2128 |
if( info["dungeonFile"] ){ |
if( info["dungeonFile"] ){ |
2127 |
2129 |
a->dungeonFile = viewToString( info["dungeonFile"].getString() ); |
a->dungeonFile = viewToString( info["dungeonFile"].getString() ); |
2128 |
2130 |
} |
} |
|
2131 |
|
// Load the agent's particle emitter. |
|
2132 |
|
if( info["particleEmitter"] ){ |
|
2133 |
|
// Get the file name of the particle template to be used for the emitter. |
|
2134 |
|
a->particleEmitterFile = viewToString(info["particleEmitter"].getString()); |
|
2135 |
|
// Load the particle template. |
|
2136 |
|
ParticleTemplate pt_main = loadParticles(a->particleEmitterFile); |
|
2137 |
|
// Create a particle server for the texture, replacing the existing particle server if necessary. |
|
2138 |
|
particleServers[pt_main.texture] = ParticleServer(); |
|
2139 |
|
// Create the particle emitter with a reference to the particle server, a copy of the particle template, |
|
2140 |
|
// and an empty particle template to eventually be used for particle impacts. (TODO) |
|
2141 |
|
a->particleEmitter = ParticleEmitter(&particleServers[pt_main.texture], pt_main, ParticleTemplate()); |
|
2142 |
|
} |
2129 |
2143 |
// Load the agent's model. |
// Load the agent's model. |
2130 |
2144 |
if( info["model"] ){ |
if( info["model"] ){ |
2131 |
2145 |
a->modelFile = viewToString( info["model"].getString() ); |
a->modelFile = viewToString( info["model"].getString() ); |
|
... |
... |
std::string Dungeon::serializeAgent( Agent *a ){ |
2595 |
2609 |
} |
} |
2596 |
2610 |
str += " },\n"; |
str += " },\n"; |
2597 |
2611 |
str += "\t\"dungeonFile\": \"" + dungeonFile + "\",\n"; // The current dungeon file. |
str += "\t\"dungeonFile\": \"" + dungeonFile + "\",\n"; // The current dungeon file. |
|
2612 |
|
str += "\t\"particleEmitter\": \"" + a->particleEmitterFile + "\",\n"; |
2598 |
2613 |
str += "\t\"model\": \"" + a->modelFile + "\",\n"; |
str += "\t\"model\": \"" + a->modelFile + "\",\n"; |
2599 |
2614 |
str += "\t\"modelDestroyed\": \"" + a->modelDestroyedFile + "\",\n"; |
str += "\t\"modelDestroyed\": \"" + a->modelDestroyedFile + "\",\n"; |
2600 |
2615 |
str += "\t\"modelLoop\": \"" + std::to_string(a->modelLoop) + "\",\n"; |
str += "\t\"modelLoop\": \"" + std::to_string(a->modelLoop) + "\",\n"; |
|
... |
... |
std::pair<bool,Agent*> Dungeon::agentFireWeapon( Agent *a, std::string weapon, s |
3386 |
3401 |
auto ray = getAgentGazeRay(a, weap.range, pitch); |
auto ray = getAgentGazeRay(a, weap.range, pitch); |
3387 |
3402 |
// Emit particles. |
// Emit particles. |
3388 |
3403 |
auto ps_it = particleServers.find(weap.particleFire.texture); |
auto ps_it = particleServers.find(weap.particleFire.texture); |
3389 |
|
if(ps_it != particleServers.end()){ |
|
|
3404 |
|
if(ps_it != particleServers.end() && weap.particleFire.vel != 0.0){ |
3390 |
3405 |
double startScale = weap.particleFire.startScale, |
double startScale = weap.particleFire.startScale, |
3391 |
3406 |
endScale = weap.particleFire.endScale, |
endScale = weap.particleFire.endScale, |
3392 |
3407 |
startMass = weap.particleFire.startMass, |
startMass = weap.particleFire.startMass, |
|
... |
... |
void Dungeon::simulate( double maxDraw, double d, std::string defenseSkill ){ |
3958 |
3973 |
} |
} |
3959 |
3974 |
} |
} |
3960 |
3975 |
} |
} |
|
3976 |
|
// Particles. |
|
3977 |
|
if( agent_ptr->particleEmitter.ps ){ |
|
3978 |
|
agent_ptr->particleEmitter.translation = |
|
3979 |
|
getAgentPoseMat(agent_ptr)[3].xyz(); |
|
3980 |
|
agent_ptr->particleEmitter.emit(d, (void*)agent_ptr); |
|
3981 |
|
} |
3961 |
3982 |
// Animations. |
// Animations. |
3962 |
3983 |
if( agent_ptr->model ){ |
if( agent_ptr->model ){ |
3963 |
3984 |
fgltf::Scene &scn = *agent_ptr->model; |
fgltf::Scene &scn = *agent_ptr->model; |