/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * 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 2 * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * $URL$ * $Id$ */ #ifndef COMMON_FUNC_H #define COMMON_FUNC_H #include "common/scummsys.h" namespace Common { template struct UnaryFunction { typedef Arg ArgumenType; typedef Result ResultType; }; template struct BinaryFunction { typedef Arg1 FirstArgumentType; typedef Arg2 SecondArgumentType; typedef Result ResultType; }; template struct EqualTo : public BinaryFunction { bool operator()(const T& x, const T& y) const { return x == y; } }; template struct Less : public BinaryFunction { bool operator()(const T& x, const T& y) const { return x < y; } }; template class Binder1st : public UnaryFunction { private: Op _op; typename Op::FirstArgumentType _arg1; public: Binder1st(const Op &op, const typename Op::FirstArgumentType &arg1) : _op(op), _arg1(arg1) {} typename Op::ResultType operator()(typename Op::SecondArgumentType v) const { return _op(_arg1, v); } }; template inline Binder1st bind1st(const Op &op, const T &t) { return Binder1st(op, t); } template class Binder2nd : public UnaryFunction { private: Op _op; typename Op::SecondArgumentType _arg2; public: Binder2nd(const Op &op, const typename Op::SecondArgumentType &arg2) : _op(op), _arg2(arg2) {} typename Op::ResultType operator()(typename Op::FirstArgumentType v) const { return _op(v, _arg2); } }; template inline Binder2nd bind2nd(const Op &op, const T &t) { return Binder2nd(op, t); } template class PointerToUnaryFunc : public UnaryFunction { private: Result (*_func)(Arg); public: typedef Result (*FuncType)(Arg); PointerToUnaryFunc(const FuncType &func) : _func(func) {} Result operator()(Arg v) const { return _func(v); } }; template class PointerToBinaryFunc : public BinaryFunction { private: Result (*_func)(Arg1, Arg2); public: typedef Result (*FuncType)(Arg1, Arg2); PointerToBinaryFunc(const FuncType &func) : _func(func) {} Result operator()(Arg1 v1, Arg2 v2) const { return _func(v1, v2); } }; template inline PointerToUnaryFunc ptr_fun(Result (*func)(Arg)) { return PointerToUnaryFunc(func); } template inline PointerToBinaryFunc ptr_fun(Result (*func)(Arg1, Arg2)) { return PointerToBinaryFunc(func); } template class MemFunc0 : public UnaryFunction { private: Result (T::*_func)(); public: typedef Result (T::*FuncType)(); MemFunc0(const FuncType &func) : _func(func) {} Result operator()(T *v) const { return (v->*_func)(); } }; template class ConstMemFunc0 : public UnaryFunction { private: Result (T::*_func)() const; public: typedef Result (T::*FuncType)() const; ConstMemFunc0(const FuncType &func) : _func(func) {} Result operator()(T *v) const { return (v->*_func)(); } }; template class MemFunc1 : public BinaryFunction { private: Result (T::*_func)(Arg); public: typedef Result (T::*FuncType)(Arg); MemFunc1(const FuncType &func) : _func(func) {} Result operator()(T *v1, Arg v2) const { return (v1->*_func)(v2); } }; template class ConstMemFunc1 : public BinaryFunction { private: Result (T::*_func)(Arg) const; public: typedef Result (T::*FuncType)(Arg) const; ConstMemFunc1(const FuncType &func) : _func(func) {} Result operator()(T *v1, Arg v2) const { return (v1->*_func)(v2); } }; template inline MemFunc0 mem_fun(Result (T::*f)()) { return MemFunc0(f); } template inline ConstMemFunc0 mem_fun(Result (T::*f)() const) { return ConstMemFunc0(f); } template inline MemFunc1 mem_fun(Result (T::*f)(Arg)) { return MemFunc1(f); } template inline ConstMemFunc1 mem_fun(Result (T::*f)(Arg) const) { return ConstMemFunc1(f); } template class BackInsertIterator { private: Cont *_container; public: BackInsertIterator(Cont &c) : _container(&c) {} BackInsertIterator &operator =(const typename Cont::value_type &v) { _container->push_back(v); return *this; } BackInsertIterator &operator *() { return *this; } BackInsertIterator &operator ++() { return *this; } BackInsertIterator operator ++(int) { return *this; } }; template BackInsertIterator back_inserter(Cont &c) { return BackInsertIterator(c); } template class FrontInsertIterator { private: Cont *_container; public: FrontInsertIterator(Cont &c) : _container(&c) {} FrontInsertIterator &operator =(const typename Cont::value_type &v) { _container->push_front(v); return *this; } FrontInsertIterator &operator *() { return *this; } FrontInsertIterator &operator ++() { return *this; } FrontInsertIterator operator ++(int) { return *this; } }; template FrontInsertIterator front_inserter(Cont &c) { return FrontInsertIterator(c); } /** * Base template for hash functor objects, used by HashMap. * This needs to be specialized for every type that you need to hash. */ template struct Hash; #define GENERATE_TRIVIAL_HASH_FUNCTOR(T) \ template <> struct Hash : public UnaryFunction { \ uint operator()(T val) const { return (uint)val; } \ } GENERATE_TRIVIAL_HASH_FUNCTOR(bool); GENERATE_TRIVIAL_HASH_FUNCTOR(char); GENERATE_TRIVIAL_HASH_FUNCTOR(signed char); GENERATE_TRIVIAL_HASH_FUNCTOR(unsigned char); GENERATE_TRIVIAL_HASH_FUNCTOR(short); GENERATE_TRIVIAL_HASH_FUNCTOR(int); GENERATE_TRIVIAL_HASH_FUNCTOR(long); GENERATE_TRIVIAL_HASH_FUNCTOR(unsigned short); GENERATE_TRIVIAL_HASH_FUNCTOR(unsigned int); GENERATE_TRIVIAL_HASH_FUNCTOR(unsigned long); #undef GENERATE_TRIVIAL_HASH_FUNCTOR } // End of namespace Common #endif