1
0
forked from 0ad/0ad
0ad/source/tools/atlas/AtlasUI/General/Observable.h

117 lines
2.8 KiB
C
Raw Normal View History

/* Copyright (C) 2009 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. 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 2 of the License, or
* (at your option) any later version.
*
* 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef INCLUDED_OBSERVABLE
#define INCLUDED_OBSERVABLE
/*
Wrapper around Boost.Signals to make watching objects for changes more convenient.
General usage:
Observable<int> variable_to_be_watched;
...
class Thing {
ObservableScopedConnection m_Conn;
Thing() {
m_Conn = variable_to_be_watched.RegisterObserver(OnChange);
}
void OnChange(const int& var) {
do_something_with(var);
}
}
...
variable_to_be_watched.NotifyObservers();
*/
#include <boost/signals.hpp>
#include <boost/bind.hpp>
typedef boost::signals::connection ObservableConnection;
# Added tool for viewing models and animations outside the game. Atlas: Added ActorViewer. Moved GL canvas into separate class for shared use. Disabled message-handling callback while blocked on the game, and stopped creating dialog boxes inside the game thread in order to avoid deadlocks (hopefully). Support multiple Views (for independent sets of camera/update/render code). Recalculate territory boundaries when necessary. Changed default list of animations to match those currently used by actors. # Tidied up more code. Moved some more #includes out of .h files, to minimise unnecessary compilation. MathUtil: Deleted unused/unuseful macros (M_PI (use PI instead), M_PI_2 (use PI/2), MAX3, ABS (use abs)). ObjectManager: Removed some ScEd-specific things. Unit: Moved creation out of UnitManager, so units can be created without adding to the manager. Changed CStr8 to the more conventional CStr. app_hooks: Removed warning for setting multiple times. win: Restored SEH catcher. GameSetup, GameView: Removed RenderNoCull, because it doesn't seem to do what it says it does ("force renderer to load everything") since we're loading-on-demand most stuff and it doesn't seem especially useful since we'd prefer to minimise loading times (but feel free to correct me if I'm wrong). (And because it crashes when things need to be initialised in a different order, so it's easier to remove than to understand and fix it.) PatchRData, Renderer: Work sensibly when there's no game (hence no LOS manager, water, etc). LOSManager: Use entity position instead of actor position when possible. TerritoryManager: Allow delayed recalculations (so Atlas can issue lots of move+recalculate commands per frame). Cinematic: Non-pointer wxTimer, so it doesn't leak and doesn't have to be deleted manually. This was SVN commit r4261.
2006-08-28 19:36:42 +02:00
typedef boost::signals::scoped_connection ObservableScopedConnection;
template <typename T> class Observable : public T
{
public:
Observable() {}
template <typename T1>
explicit Observable(const T1& a1) : T(a1) {}
template <typename T1, typename T2>
explicit Observable(T1& a1, T2 a2) : T(a1, a2) {}
template<typename C> ObservableConnection RegisterObserver(int order, void (C::*callback) (const T&), C* obj)
{
return m_Signal.connect(order, boost::bind(std::mem_fun(callback), obj, _1));
}
ObservableConnection RegisterObserver(int order, void (*callback) (const T&))
{
return m_Signal.connect(order, callback);
}
void RemoveObserver(const ObservableConnection& conn)
{
conn.disconnect();
}
void NotifyObservers()
{
m_Signal(*this);
}
// Use when an object is changing something that it's also observing,
// because it already knows about the change and doesn't need to be notified
// again (particularly since that may cause infinite loops).
void NotifyObserversExcept(ObservableConnection& conn)
{
if (conn.blocked())
{
// conn is already blocked and won't see anything
NotifyObservers();
}
else
{
// Temporarily disable conn
conn.block();
NotifyObservers();
conn.unblock();
}
}
Observable<T>* operator=(const T& rhs)
{
*dynamic_cast<T*>(this) = rhs;
return this;
}
private:
boost::signal<void (const T&)> m_Signal;
};
class ObservableScopedConnections
{
public:
void Add(const ObservableConnection& conn);
~ObservableScopedConnections();
private:
std::vector<ObservableConnection> m_Conns;
};
#endif // INCLUDED_OBSERVABLE