-
-
Notifications
You must be signed in to change notification settings - Fork 388
/
Copy pathProjectM.cpp
513 lines (420 loc) · 13 KB
/
ProjectM.cpp
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
/**
* projectM -- Milkdrop-esque visualisation SDK
* Copyright (C)2003-2004 projectM Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* See 'LICENSE.txt' included within this release
*
*/
#include "ProjectM.hpp"
#include "Preset.hpp"
#include "PresetFactoryManager.hpp"
#include "TimeKeeper.hpp"
#include <Audio/PCM.hpp>
#include <Renderer/CopyTexture.hpp>
#include <Renderer/PresetTransition.hpp>
#include <Renderer/TextureManager.hpp>
#include <Renderer/ShaderCache.hpp>
#include <Renderer/TransitionShaderManager.hpp>
#include <UserSprites/SpriteManager.hpp>
namespace libprojectM {
ProjectM::ProjectM()
: m_presetFactoryManager(std::make_unique<PresetFactoryManager>())
{
Initialize();
}
ProjectM::~ProjectM()
{
// Can't use "=default" in the header due to unique_ptr requiring the actual type declarations.
}
void ProjectM::PresetSwitchRequestedEvent(bool) const
{
}
void ProjectM::PresetSwitchFailedEvent(const std::string&, const std::string&) const
{
}
void ProjectM::LoadPresetFile(const std::string& presetFilename, bool smoothTransition)
{
try
{
m_textureManager->PurgeTextures();
StartPresetTransition(m_presetFactoryManager->CreatePresetFromFile(presetFilename), !smoothTransition);
}
catch (const std::exception& ex)
{
PresetSwitchFailedEvent(presetFilename, ex.what());
}
}
void ProjectM::LoadPresetData(std::istream& presetData, bool smoothTransition)
{
try
{
m_textureManager->PurgeTextures();
StartPresetTransition(m_presetFactoryManager->CreatePresetFromStream(".milk", presetData), !smoothTransition);
}
catch (const std::exception& ex)
{
PresetSwitchFailedEvent("", ex.what());
}
}
void ProjectM::SetTexturePaths(std::vector<std::string> texturePaths)
{
m_textureSearchPaths = std::move(texturePaths);
m_textureManager = std::make_unique<Renderer::TextureManager>(m_textureSearchPaths);
}
void ProjectM::ResetTextures()
{
m_textureManager = std::make_unique<Renderer::TextureManager>(m_textureSearchPaths);
}
void ProjectM::RenderFrame(uint32_t targetFramebufferObject /*= 0*/)
{
// Don't render if window area is zero.
if (m_windowWidth == 0 || m_windowHeight == 0)
{
return;
}
// Update FPS and other timer values.
m_timeKeeper->UpdateTimers();
// Update and retrieve audio data
m_audioStorage.UpdateFrameAudioData(m_timeKeeper->SecondsSinceLastFrame(), m_frameCount);
auto audioData = m_audioStorage.GetFrameAudioData();
// Check if the preset isn't locked, and we've not already notified the user
if (!m_presetChangeNotified)
{
// If preset is done and we're not already switching
if (m_timeKeeper->PresetProgressA() >= 1.0 && !m_timeKeeper->IsSmoothing())
{
m_presetChangeNotified = true;
PresetSwitchRequestedEvent(false);
}
else if (m_hardCutEnabled &&
m_frameCount > 50 &&
(audioData.vol - m_previousFrameVolume > m_hardCutSensitivity) &&
m_timeKeeper->CanHardCut())
{
m_presetChangeNotified = true;
PresetSwitchRequestedEvent(true);
}
}
// If no preset is active, load the idle preset.
if (!m_activePreset)
{
LoadIdlePreset();
if (!m_activePreset)
{
return;
}
m_activePreset->Initialize(GetRenderContext());
}
if (m_timeKeeper->IsSmoothing() && m_transitioningPreset != nullptr)
{
// ToDo: check if new preset is loaded.
if (m_timeKeeper->SmoothRatio() >= 1.0)
{
m_timeKeeper->EndSmoothing();
}
}
auto renderContext = GetRenderContext();
if (m_transition != nullptr && m_transitioningPreset != nullptr)
{
if (m_transition->IsDone(m_timeKeeper->GetFrameTime()))
{
m_activePreset = std::move(m_transitioningPreset);
m_transitioningPreset.reset();
m_transition.reset();
}
else
{
m_transitioningPreset->RenderFrame(audioData, renderContext);
}
}
// ToDo: Call the to-be-implemented render method in Renderer
m_activePreset->RenderFrame(audioData, renderContext);
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, static_cast<GLuint>(targetFramebufferObject));
if (m_transition != nullptr && m_transitioningPreset != nullptr)
{
m_transition->Draw(*m_activePreset, *m_transitioningPreset, renderContext, audioData, m_timeKeeper->GetFrameTime());
}
else
{
m_textureCopier->Draw(m_activePreset->OutputTexture(), false, false);
}
// Draw user sprites
m_spriteManager->Draw(audioData, renderContext, targetFramebufferObject, { m_activePreset, m_transitioningPreset });
m_frameCount++;
m_previousFrameVolume = audioData.vol;
}
void ProjectM::Initialize()
{
/** Initialise start time */
m_timeKeeper = std::make_unique<TimeKeeper>(m_presetDuration,
m_softCutDuration,
m_hardCutDuration,
m_easterEgg);
/** Nullify frame stash */
/** Initialise per-pixel matrix calculations */
/** We need to initialise this before the builtin param db otherwise bass/mid etc won't bind correctly */
m_textureManager = std::make_unique<Renderer::TextureManager>(m_textureSearchPaths);
m_shaderCache = std::make_unique<Renderer::ShaderCache>();
m_transitionShaderManager = std::make_unique<Renderer::TransitionShaderManager>();
m_textureCopier = std::make_unique<Renderer::CopyTexture>();
m_spriteManager = std::make_unique<UserSprites::SpriteManager>();
m_presetFactoryManager->initialize();
/* Set the seed to the current time in seconds */
srand(time(nullptr));
LoadIdlePreset();
m_timeKeeper->StartPreset();
}
void ProjectM::LoadIdlePreset()
{
LoadPresetFile("idle://Geiss & Sperl - Feedback (projectM idle HDR mix).milk", false);
assert(m_activePreset);
}
void ProjectM::SetWindowSize(uint32_t width, uint32_t height)
{
/** Stash the new dimensions */
m_windowWidth = width;
m_windowHeight = height;
}
void ProjectM::StartPresetTransition(std::unique_ptr<Preset>&& preset, bool hardCut)
{
m_presetChangeNotified = m_presetLocked;
if (preset == nullptr)
{
return;
}
preset->Initialize(GetRenderContext());
// If already in a transition, force immediate completion.
if (m_transitioningPreset != nullptr)
{
m_activePreset = std::move(m_transitioningPreset);
m_transition.reset();
}
if (m_activePreset)
{
preset->DrawInitialImage(m_activePreset->OutputTexture(), GetRenderContext());
}
if (hardCut)
{
m_activePreset = std::move(preset);
m_timeKeeper->StartPreset();
}
else
{
m_transitioningPreset = std::move(preset);
m_timeKeeper->StartSmoothing();
m_transition = std::make_unique<Renderer::PresetTransition>(m_transitionShaderManager->RandomTransition(), m_softCutDuration, m_timeKeeper->GetFrameTime());
}
}
auto ProjectM::WindowWidth() -> int
{
return m_windowWidth;
}
auto ProjectM::WindowHeight() -> int
{
return m_windowHeight;
}
auto ProjectM::AddUserSprite(const std::string& type, const std::string& spriteData) -> uint32_t
{
return m_spriteManager->Spawn(type, spriteData, GetRenderContext());
}
void ProjectM::DestroyUserSprite(uint32_t spriteIdentifier)
{
m_spriteManager->Destroy(spriteIdentifier);
}
void ProjectM::DestroyAllUserSprites()
{
m_spriteManager->DestroyAll();
}
auto ProjectM::UserSpriteCount() const -> uint32_t
{
return m_spriteManager->ActiveSpriteCount();
}
void ProjectM::SetUserSpriteLimit(uint32_t maxSprites)
{
m_spriteManager->SpriteSlots(maxSprites);
}
auto ProjectM::UserSpriteLimit() const -> uint32_t
{
return m_spriteManager->SpriteSlots();
}
auto ProjectM::UserSpriteIdentifiers() const -> std::vector<uint32_t>
{
return m_spriteManager->ActiveSpriteIdentifiers();
}
void ProjectM::SetPresetLocked(bool locked)
{
// ToDo: Add a preset switch timer separate from the display timer and reset to 0 when
// disabling the preset switch lock.
m_presetLocked = locked;
m_presetChangeNotified = locked;
}
auto ProjectM::PresetLocked() const -> bool
{
return m_presetLocked;
}
void ProjectM::SetFrameTime(double secondsSinceStart)
{
m_timeKeeper->SetFrameTime(secondsSinceStart);
}
double ProjectM::GetFrameTime()
{
return m_timeKeeper->GetFrameTime();
}
void ProjectM::SetBeatSensitivity(float sensitivity)
{
m_beatSensitivity = std::min(std::max(0.0f, sensitivity), 2.0f);
}
auto ProjectM::GetBeatSensitivity() const -> float
{
return m_beatSensitivity;
}
auto ProjectM::SoftCutDuration() const -> double
{
return m_softCutDuration;
}
void ProjectM::SetSoftCutDuration(double seconds)
{
m_softCutDuration = seconds;
m_timeKeeper->ChangeSoftCutDuration(seconds);
}
auto ProjectM::HardCutDuration() const -> double
{
return m_hardCutDuration;
}
void ProjectM::SetHardCutDuration(double seconds)
{
m_hardCutDuration = static_cast<int>(seconds);
m_timeKeeper->ChangeHardCutDuration(seconds);
}
auto ProjectM::HardCutEnabled() const -> bool
{
return m_hardCutEnabled;
}
void ProjectM::SetHardCutEnabled(bool enabled)
{
m_hardCutEnabled = enabled;
}
auto ProjectM::HardCutSensitivity() const -> float
{
return m_hardCutSensitivity;
}
void ProjectM::SetHardCutSensitivity(float sensitivity)
{
m_hardCutSensitivity = sensitivity;
}
void ProjectM::SetPresetDuration(double seconds)
{
m_timeKeeper->ChangePresetDuration(seconds);
}
auto ProjectM::PresetDuration() const -> double
{
return m_timeKeeper->PresetDuration();
}
auto ProjectM::TargetFramesPerSecond() const -> int32_t
{
return m_targetFps;
}
void ProjectM::SetTargetFramesPerSecond(int32_t fps)
{
m_targetFps = fps;
}
auto ProjectM::AspectCorrection() const -> bool
{
return m_aspectCorrection;
}
void ProjectM::SetAspectCorrection(bool enabled)
{
m_aspectCorrection = enabled;
}
auto ProjectM::EasterEgg() const -> float
{
return m_easterEgg;
}
void ProjectM::SetEasterEgg(float value)
{
m_easterEgg = value;
m_timeKeeper->ChangeEasterEgg(value);
}
void ProjectM::MeshSize(uint32_t& meshResolutionX, uint32_t& meshResolutionY) const
{
meshResolutionX = m_meshX;
meshResolutionY = m_meshY;
}
void ProjectM::SetMeshSize(uint32_t meshResolutionX, uint32_t meshResolutionY)
{
m_meshX = meshResolutionX;
m_meshY = meshResolutionY;
// Need multiples of two, otherwise will not render a horizontal and/or vertical bar in the center of the warp mesh.
if (m_meshX % 2 == 1)
{
m_meshX++;
}
if (m_meshY % 2 == 1)
{
m_meshY++;
}
// Constrain per-pixel mesh size to sensible limits
m_meshX = std::max(8u, std::min(400u, m_meshX));
m_meshY = std::max(8u, std::min(400u, m_meshY));
}
auto ProjectM::PCM() -> libprojectM::Audio::PCM&
{
return m_audioStorage;
}
void ProjectM::Touch(float, float, int, int)
{
// UNIMPLEMENTED
}
void ProjectM::TouchDrag(float, float, int)
{
// UNIMPLEMENTED
}
void ProjectM::TouchDestroy(float, float)
{
// UNIMPLEMENTED
}
void ProjectM::TouchDestroyAll()
{
// UNIMPLEMENTED
}
auto ProjectM::GetRenderContext() -> Renderer::RenderContext
{
Renderer::RenderContext ctx{};
ctx.viewportSizeX = m_windowWidth;
ctx.viewportSizeY = m_windowHeight;
ctx.time = static_cast<float>(m_timeKeeper->GetRunningTime());
ctx.progress = static_cast<float>(m_timeKeeper->PresetProgressA());
ctx.fps = static_cast<float>(m_targetFps);
ctx.frame = m_frameCount;
ctx.aspectX = (m_windowHeight > m_windowWidth) ? static_cast<float>(m_windowWidth) / static_cast<float>(m_windowHeight) : 1.0f;
ctx.aspectY = (m_windowWidth > m_windowHeight) ? static_cast<float>(m_windowHeight) / static_cast<float>(m_windowWidth) : 1.0f;
ctx.invAspectX = 1.0f / ctx.aspectX;
ctx.invAspectY = 1.0f / ctx.aspectY;
ctx.perPixelMeshX = static_cast<int>(m_meshX);
ctx.perPixelMeshY = static_cast<int>(m_meshY);
ctx.textureManager = m_textureManager.get();
ctx.shaderCache = m_shaderCache.get();
if (m_transition)
{
ctx.blendProgress = m_transition->Progress(ctx.time);
}
else
{
ctx.blendProgress = 0.0;
}
return ctx;
}
} // namespace libprojectM