diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-30 11:02:39 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-30 11:02:39 -0400 |
commit | b1f93a4f8a5a3e84db9f00d0b41749d4fb32ed26 (patch) | |
tree | 83016b80294f6b7681093ae46aa55840b6fb9ec1 /entityx | |
parent | 69768fdc5050bbe5877bf80108584400ea292a4f (diff) |
event feature work; ozone bgm redone
Diffstat (limited to 'entityx')
-rw-r--r-- | entityx/Event.h | 10 | ||||
-rw-r--r-- | entityx/Makefile | 7 | ||||
-rw-r--r-- | entityx/libentityx.a | bin | 435972 -> 549286 bytes | |||
-rw-r--r-- | entityx/out/Entity.o | bin | 317167 -> 0 bytes | |||
-rw-r--r-- | entityx/out/Event.o | bin | 23737 -> 0 bytes | |||
-rw-r--r-- | entityx/out/Pool.o | bin | 12428 -> 0 bytes | |||
-rw-r--r-- | entityx/out/System.o | bin | 21295 -> 0 bytes | |||
-rw-r--r-- | entityx/out/Timer.o | bin | 12317 -> 0 bytes |
8 files changed, 10 insertions, 7 deletions
diff --git a/entityx/Event.h b/entityx/Event.h index cb7b3ab..988c9a1 100644 --- a/entityx/Event.h +++ b/entityx/Event.h @@ -37,7 +37,7 @@ class BaseEvent { }; -typedef Simple::Signal<void (const void*)> EventSignal; +typedef Simple::Signal<bool (const void*)> EventSignal; typedef std::shared_ptr<EventSignal> EventSignalPtr; typedef std::weak_ptr<EventSignal> EventSignalWeakPtr; @@ -123,7 +123,7 @@ class EventManager : entityx::help::NonCopyable { */ template <typename E, typename Receiver> void subscribe(Receiver &receiver) { - void (Receiver::*receive)(const E &) = &Receiver::receive; + bool (Receiver::*receive)(const E &) = &Receiver::receive; auto sig = signal_for(Event<E>::family()); auto wrapper = EventCallbackWrapper<E>(std::bind(receive, &receiver, std::placeholders::_1)); auto connection = sig->connect(wrapper); @@ -205,9 +205,9 @@ class EventManager : entityx::help::NonCopyable { // Functor used as an event signal callback that casts to E. template <typename E> struct EventCallbackWrapper { - explicit EventCallbackWrapper(std::function<void(const E &)> callback) : callback(callback) {} - void operator()(const void *event) { callback(*(static_cast<const E*>(event))); } - std::function<void(const E &)> callback; + explicit EventCallbackWrapper(std::function<bool(const E &)> callback) : callback(callback) {} + bool operator()(const void *event) { return callback(*(static_cast<const E*>(event))); } + std::function<bool(const E &)> callback; }; std::vector<EventSignalPtr> handlers_; diff --git a/entityx/Makefile b/entityx/Makefile index 5deb756..58b18a7 100644 --- a/entityx/Makefile +++ b/entityx/Makefile @@ -1,3 +1,5 @@ +# gamedev CHANGE - changed output of libentityx to ../lib/ + INC = -I.. FLG = -std=gnu++11 @@ -12,5 +14,6 @@ all: g++ $(INC) $(FLG) -c Event.cc -o out/Event.o g++ $(INC) $(FLG) -c Entity.cc -o out/Entity.o g++ $(INC) $(FLG) -c System.cc -o out/System.o - ar rvs libentityx.a out/*.o -# g++ out/*.o -shared -o ../entityx.so
\ No newline at end of file + ar rvs ../lib/libentityx.a out/*.o +# g++ out/*.o -shared -o ../entityx.so + rm -rf out diff --git a/entityx/libentityx.a b/entityx/libentityx.a Binary files differindex 643acc6..2196a18 100644 --- a/entityx/libentityx.a +++ b/entityx/libentityx.a diff --git a/entityx/out/Entity.o b/entityx/out/Entity.o Binary files differdeleted file mode 100644 index fde66e6..0000000 --- a/entityx/out/Entity.o +++ /dev/null diff --git a/entityx/out/Event.o b/entityx/out/Event.o Binary files differdeleted file mode 100644 index 8f83146..0000000 --- a/entityx/out/Event.o +++ /dev/null diff --git a/entityx/out/Pool.o b/entityx/out/Pool.o Binary files differdeleted file mode 100644 index 4d0bc5d..0000000 --- a/entityx/out/Pool.o +++ /dev/null diff --git a/entityx/out/System.o b/entityx/out/System.o Binary files differdeleted file mode 100644 index 6b38822..0000000 --- a/entityx/out/System.o +++ /dev/null diff --git a/entityx/out/Timer.o b/entityx/out/Timer.o Binary files differdeleted file mode 100644 index fc47589..0000000 --- a/entityx/out/Timer.o +++ /dev/null |