aboutsummaryrefslogtreecommitdiffstats
path: root/src/audio.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-30 15:29:49 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-30 15:29:49 -0400
commitbebc6e955114a0907c43df9a9c00f22b1f743446 (patch)
tree5a31e0f31727d69a978fcce9abd12551cdce4cea /src/audio.hpp
parent7919f7f69b0abd54a6df92f34e1392b84dae3669 (diff)
created Audio component
Diffstat (limited to 'src/audio.hpp')
-rw-r--r--src/audio.hpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/audio.hpp b/src/audio.hpp
index 4d617c7..97fff99 100644
--- a/src/audio.hpp
+++ b/src/audio.hpp
@@ -21,10 +21,12 @@
#define SYSTEM_AUDIO_HPP_
#include <AL/alut.h>
-
#include <entityx/entityx.h>
-class AudioSystem : public entityx::System<AudioSystem>
+#include <components/Audio.hpp>
+
+class AudioSystem : public entityx::System<AudioSystem>,
+ public entityx::Receiver<AudioSystem>
{
private:
std::unique_ptr<ALCdevice, void (*)(ALCdevice *)> device;
@@ -46,6 +48,9 @@ public:
void update(entityx::EntityManager& entities,
entityx::EventManager& events,
entityx::TimeDelta dt) final;
+
+ void receive(const entityx::ComponentAddedEvent<Audio>& cae);
+ void receive(const entityx::ComponentRemovedEvent<Audio>& cae);
};
#endif // SYSTEM_AUDIO_HPP_