2013-12-22 08:30:30 +08:00
|
|
|
// The MIT License (MIT)
|
|
|
|
|
|
|
|
// Copyright (c) 2013 Danny Y., Rapptz
|
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
|
|
// the Software without restriction, including without limitation the rights to
|
|
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
// subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
#include "traits.hpp"
|
|
|
|
#include "object.hpp"
|
|
|
|
#include "function.hpp"
|
|
|
|
|
|
|
|
namespace sol {
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key>
|
2013-12-22 08:30:30 +08:00
|
|
|
struct proxy {
|
|
|
|
private:
|
2013-12-22 11:11:20 +08:00
|
|
|
Table& tbl;
|
|
|
|
Key& key;
|
2013-12-22 08:30:30 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename T>
|
2013-12-22 11:11:20 +08:00
|
|
|
proxy(Table& table, T&& key) : tbl(table), key(std::forward<T>(key)) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
T get() const {
|
|
|
|
return tbl.get<T>(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
proxy& set(T&& item) {
|
|
|
|
tbl.set(key, std::forward<T>(item));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
proxy& set_function(Args&&... args) {
|
|
|
|
tbl.set_function(key, std::forward<Args>(args)...);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
EnableIf<Function<Unqualified<U>>> operator=(U&& other) {
|
|
|
|
tbl.set_function(key, std::forward<U>(other));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
DisableIf<Function<Unqualified<U>>> operator=(U&& other) {
|
|
|
|
tbl.set(key, std::forward<U>(other));
|
|
|
|
}
|
|
|
|
|
|
|
|
operator nil_t () const {
|
|
|
|
return get<nil_t>();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator object() const {
|
|
|
|
return get<object>();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator function() const {
|
|
|
|
return get<function>();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator std::string() const {
|
|
|
|
return get<std::string>();
|
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename T = void>
|
2013-12-22 11:11:20 +08:00
|
|
|
operator bool() const {
|
|
|
|
return get<bool>();
|
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename T = void>
|
2013-12-22 11:11:20 +08:00
|
|
|
operator double() const {
|
|
|
|
return get<double>();
|
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename T = void>
|
2013-12-22 11:11:20 +08:00
|
|
|
operator float() const {
|
|
|
|
return get<float>();
|
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename T = void>
|
2013-12-22 11:11:20 +08:00
|
|
|
operator int() const {
|
|
|
|
return get<int>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Ret, typename... Args>
|
2014-05-09 01:08:21 +08:00
|
|
|
typename return_type<Ret...>::type call(Args&&... args) {
|
2013-12-22 11:11:20 +08:00
|
|
|
return tbl.get<function>(key)(types<Ret...>(), std::forward<Args>(args)...);
|
|
|
|
}
|
2013-12-22 08:30:30 +08:00
|
|
|
};
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2013-12-22 11:11:20 +08:00
|
|
|
inline bool operator== (T&& left, const proxy<Table, Key>& right) {
|
|
|
|
return left == right.template get<Decay<T>>();
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2013-12-22 11:11:20 +08:00
|
|
|
inline bool operator== (const proxy<Table, Key>& right, T&& left) {
|
|
|
|
return right.template get<Decay<T>>() == left;
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2013-12-22 11:11:20 +08:00
|
|
|
inline bool operator!= (T&& left, const proxy<Table, Key>& right) {
|
|
|
|
return right.template get<Decay<T>>() != left;
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename Table, typename Key, typename T>
|
2013-12-22 11:11:20 +08:00
|
|
|
inline bool operator!= (const proxy<Table, Key>& right, T&& left) {
|
|
|
|
return right.template get<Decay<T>>() != left;
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-05-29 13:47:27 +08:00
|
|
|
} // sol
|