From af39f2e08b0503db723ae707a5c7278d8c85f812 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 1 Oct 2019 20:50:28 -0400 Subject: Audio component loading, getting ready to play --- Scripts/init.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Scripts/init.lua') diff --git a/Scripts/init.lua b/Scripts/init.lua index ec9e350..ea5a833 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -37,6 +37,9 @@ player = { }, Physics = 0, Name = "bord", + Audio = { + file = "Assets/jump.wav" + }, hellotrue = true, hellofalse = false, Render = { -- cgit v1.2.3 From 9d79ba461a399ce5c211dc7ca2fc49b8934c1cd7 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 1 Oct 2019 20:57:25 -0400 Subject: sound on jump --- Scripts/init.lua | 1 + src/engine.cpp | 3 +++ 2 files changed, 4 insertions(+) (limited to 'Scripts/init.lua') diff --git a/Scripts/init.lua b/Scripts/init.lua index ea5a833..d09fb14 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -21,6 +21,7 @@ player = { end, JumpKeyPressed = function(self) if self.Physics.standing == true then + game.play(self.Position, self.Audio) self.Velocity.y = self.Velocity.y + 9 end end, diff --git a/src/engine.cpp b/src/engine.cpp index ed5ba07..c6bec27 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -66,6 +66,9 @@ int Engine::init(void) script->addToGameNamespace("puts", bindInstance(&TextSystem::put, systems.system().get())); + script->addToGameNamespace("play", + bindInstance(&AudioSystem::playSound, + systems.system().get())); script->init(); -- cgit v1.2.3 From 16a29df61f6cbc546123c91a0b72d1bfb68d6de2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 2 Oct 2019 13:51:26 -0400 Subject: beautiful ball bounce sound --- Assets/boing.wav | Bin 0 -> 605018 bytes Scripts/init.lua | 4 ++++ 2 files changed, 4 insertions(+) create mode 100644 Assets/boing.wav (limited to 'Scripts/init.lua') diff --git a/Assets/boing.wav b/Assets/boing.wav new file mode 100644 index 0000000..a142197 Binary files /dev/null and b/Assets/boing.wav differ diff --git a/Scripts/init.lua b/Scripts/init.lua index d09fb14..96e031a 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -80,10 +80,14 @@ ball = { }, Idle = function(self) if self.Physics.standing == true then + game.play(self.Position, self.Audio) self.Velocity.y = self.Velocity.y + 15 self.Velocity.x = math.random(-1, 1); end end, + Audio = { + file = "Assets/boing.wav" + }, } -- Create the world -- cgit v1.2.3 From 1c52ee2e02bc3c09e7cac3b20c81c910b7151144 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 9 May 2020 09:06:32 -0400 Subject: Added npc --- Scripts/init.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'Scripts/init.lua') diff --git a/Scripts/init.lua b/Scripts/init.lua index ec9e350..dc5093b 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -82,11 +82,44 @@ ball = { end, } +npc = { + Position = { + x = 30, + y = 75 + }, + Velocity = { + x = 0.0, + y = 0.0 + }, + Physics = 0, + Name = "Paul", + Render = { + texture = "Assets/cat.png", + visible = true + }, + Light = { + r = 1.0, + g = 1.0, + b = 1.0, + strength = 0.5 + }, + Idle = function(self) + if (self.visibleTick == 0) then + self.visibleTick = math.random(40, 60) + self.Velocity.x = math.random(-1, 1) * 1.0 + else + self.visibleTick = self.visibleTick - 1 + end + end, + visibleTick = 0 +} + -- Create the world dofile("Scripts/world.lua") playerSpawn = game.spawn(player); game.spawn(ball); +game.spawn(npc); ------------------- -- SERIALIZING -- -- cgit v1.2.3 From da0913771538fd9b1ca538615fd9aa0388608466 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 9 May 2020 09:42:18 -0400 Subject: Merge audio; handle mouse events --- Scripts/init.lua | 5 +++ src/components/EventListener.hpp | 5 ++- src/input.cpp | 83 ++++++++++++++++++++++++++++++++++++++++ src/input.hpp | 33 ++++++---------- src/player.cpp | 42 +++++++++----------- 5 files changed, 120 insertions(+), 48 deletions(-) create mode 100644 src/input.cpp (limited to 'Scripts/init.lua') diff --git a/Scripts/init.lua b/Scripts/init.lua index 572f722..66fbcb1 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -111,6 +111,11 @@ npc = { b = 1.0, strength = 0.5 }, + EventListeners = { + MousePressed = function(self, x, y, button) + self.Velocity.y = 3.0; + end + }, Idle = function(self) if (self.visibleTick == 0) then self.visibleTick = math.random(40, 60) diff --git a/src/components/EventListener.hpp b/src/components/EventListener.hpp index 77a004e..c39b6ad 100644 --- a/src/components/EventListener.hpp +++ b/src/components/EventListener.hpp @@ -42,10 +42,11 @@ public: return *this; } - void tryListener(const std::string& name, sol::table& self) + template + void tryListener(const std::string& name, sol::table& self, Args... args) { if (listeners[name] == sol::type::function) - listeners[name](self); + listeners[name](self, args...); } void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} diff --git a/src/input.cpp b/src/input.cpp new file mode 100644 index 0000000..21959c1 --- /dev/null +++ b/src/input.cpp @@ -0,0 +1,83 @@ +/** + * @file input.cpp + * Handles user input received from SDL. + * + * Copyright (C) 2020 Clyne Sullivan + * + * This program 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. + * + * This program 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 . + */ + +#include "input.hpp" + +#include "components/EventListener.hpp" +#include "components/Script.hpp" + +InputSystem::InputSystem() : + isMouseDown(false) {} + +/** + * Prepares the system for running. + */ +void InputSystem::configure([[maybe_unused]] entityx::EntityManager& entities, + [[maybe_unused]] entityx::EventManager& events) {} + +/** + * Updates the system by checking for SDL events. + */ +void InputSystem::update(entityx::EntityManager& entities, + entityx::EventManager& events, + [[maybe_unused]] entityx::TimeDelta dt) +{ + for (SDL_Event event; SDL_PollEvent(&event);) { + switch (event.type) { + case SDL_KEYUP: + if (auto key = event.key; key.repeat == 0) + events.emit(key.keysym); + break; + case SDL_KEYDOWN: + if (auto key = event.key; key.repeat == 0) + events.emit(key.keysym); + break; + case SDL_MOUSEBUTTONDOWN: + if (!isMouseDown) { + isMouseDown = true; + entities.each( + [&event](entityx::Entity e, EventListener& el) { + el.tryListener("MousePressed", + e.component()->caller, + event.button.x, + event.button.y, + event.button.button); + }); + } + break; + case SDL_MOUSEBUTTONUP: + if (isMouseDown) { + isMouseDown = false; + entities.each( + [&event](entityx::Entity e, EventListener& el) { + el.tryListener("MouseReleased", + e.component()->caller, + event.button.x, + event.button.y, + event.button.button); + }); + } + break; + default: + break; + } + } +} + diff --git a/src/input.hpp b/src/input.hpp index fa92c39..6180388 100644 --- a/src/input.hpp +++ b/src/input.hpp @@ -1,5 +1,5 @@ /** - * @file window.hpp + * @file input.hpp * Handles user input received from SDL. * * Copyright (C) 2019 Clyne Sullivan @@ -56,34 +56,23 @@ struct KeyDownEvent { class InputSystem : public entityx::System { public: + InputSystem(); + /** * Prepares the system for running. */ - void configure([[maybe_unused]] entityx::EntityManager& entities, - [[maybe_unused]] entityx::EventManager& events) final {} + void configure(entityx::EntityManager& entities, + entityx::EventManager& events) final; /** * Updates the system by checking for SDL events. */ - void update([[maybe_unused]] entityx::EntityManager& entities, - [[maybe_unused]] entityx::EventManager& events, - [[maybe_unused]] entityx::TimeDelta dt) final - { - for (SDL_Event event; SDL_PollEvent(&event);) { - switch (event.type) { - case SDL_KEYUP: - if (auto key = event.key; key.repeat == 0) - events.emit(key.keysym); - break; - case SDL_KEYDOWN: - if (auto key = event.key; key.repeat == 0) - events.emit(key.keysym); - break; - default: - break; - } - } - } + void update(entityx::EntityManager& entities, + entityx::EventManager& events, + entityx::TimeDelta dt) final; + +private: + bool isMouseDown; }; #endif // SYSTEM_INPUT_HPP_ diff --git a/src/player.cpp b/src/player.cpp index b914672..f40a1d1 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -54,26 +54,23 @@ void PlayerSystem::receive(const KeyDownEvent& kue) { if (player.valid()) { if (kue.sym == SDLK_a) { - entities.each([&]([[maybe_unused]] entityx::Entity e, - EventListener& el) - { + entities.each( + [](entityx::Entity e, EventListener& el) { el.tryListener("MoveLeftPressed", e.component()->caller); - }); + }); } else if (kue.sym == SDLK_d) { - entities.each([&]([[maybe_unused]] entityx::Entity e, - EventListener& el) - { + entities.each( + [](entityx::Entity e, EventListener& el) { el.tryListener("MoveRightPressed", e.component()->caller); - }); + }); } else if (kue.sym == SDLK_SPACE) { - entities.each([&]([[maybe_unused]] entityx::Entity e, - EventListener& el) - { + entities.each( + [](entityx::Entity e, EventListener& el) { el.tryListener("JumpKeyPressed", e.component()->caller); - }); + }); } } } @@ -82,26 +79,23 @@ void PlayerSystem::receive(const KeyUpEvent& kue) { if (player.valid()) { if (kue.sym == SDLK_a) { - entities.each([&]([[maybe_unused]] entityx::Entity e, - EventListener& el) - { + entities.each( + [](entityx::Entity e, EventListener& el) { el.tryListener("MoveLeftReleased", e.component()->caller); - }); + }); } else if (kue.sym == SDLK_d) { - entities.each([&]([[maybe_unused]] entityx::Entity e, - EventListener& el) - { + entities.each( + [](entityx::Entity e, EventListener& el) { el.tryListener("MoveRightReleased", e.component()->caller); - }); + }); } else if (kue.sym == SDLK_SPACE) { - entities.each([&]([[maybe_unused]] entityx::Entity e, - EventListener& el) - { + entities.each( + [](entityx::Entity e, EventListener& el) { el.tryListener("JumpKeyReleased", e.component()->caller); - }); + }); } } } -- cgit v1.2.3