add missing lua casts
This commit is contained in:
parent
2b8cbf1567
commit
acd720e249
|
@ -50,21 +50,6 @@ bool luavalue_cast(int index, int& i)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// uint
|
|
||||||
void push_luavalue(uint v)
|
|
||||||
{
|
|
||||||
push_luavalue((double)v);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool luavalue_cast(int index, uint& v)
|
|
||||||
{
|
|
||||||
double d;
|
|
||||||
bool ret = luavalue_cast(index, d);
|
|
||||||
v = (uint32)d;
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// double
|
// double
|
||||||
void push_luavalue(double d)
|
void push_luavalue(double d)
|
||||||
{
|
{
|
||||||
|
@ -79,20 +64,6 @@ bool luavalue_cast(int index, double& d)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// size_t
|
|
||||||
void push_luavalue(std::size_t s)
|
|
||||||
{
|
|
||||||
push_luavalue((double)s);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool luavalue_cast(int index, std::size_t& s)
|
|
||||||
{
|
|
||||||
double d;
|
|
||||||
bool ret = luavalue_cast(index, d);
|
|
||||||
s = d;
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
// string
|
// string
|
||||||
void push_luavalue(const char* cstr)
|
void push_luavalue(const char* cstr)
|
||||||
{
|
{
|
||||||
|
|
|
@ -36,17 +36,31 @@ bool luavalue_cast(int index, bool& b);
|
||||||
void push_luavalue(int i);
|
void push_luavalue(int i);
|
||||||
bool luavalue_cast(int index, int& i);
|
bool luavalue_cast(int index, int& i);
|
||||||
|
|
||||||
// uint
|
|
||||||
void push_luavalue(uint v);
|
|
||||||
bool luavalue_cast(int index, uint& v);
|
|
||||||
|
|
||||||
// double
|
// double
|
||||||
void push_luavalue(double d);
|
void push_luavalue(double d);
|
||||||
bool luavalue_cast(int index, double& d);
|
bool luavalue_cast(int index, double& d);
|
||||||
|
|
||||||
// size_t
|
// int8
|
||||||
void push_luavalue(std::size_t s);
|
inline void push_luavalue(int8 v) { push_luavalue((int)v); }
|
||||||
bool luavalue_cast(int index, std::size_t& s);
|
inline bool luavalue_cast(int index, int8& v) { int i; bool r = luavalue_cast(index, i); v = i; return r; }
|
||||||
|
// uint8
|
||||||
|
inline void push_luavalue(uint8 v) { push_luavalue((int)v); }
|
||||||
|
inline bool luavalue_cast(int index, uint8& v){ int i; bool r = luavalue_cast(index, i); v = i; return r; }
|
||||||
|
// int16
|
||||||
|
inline void push_luavalue(int16 v) { push_luavalue((int)v); }
|
||||||
|
inline bool luavalue_cast(int index, int16& v){ int i; bool r = luavalue_cast(index, i); v = i; return r; }
|
||||||
|
// uint16
|
||||||
|
inline void push_luavalue(uint16 v) { push_luavalue((int)v); }
|
||||||
|
inline bool luavalue_cast(int index, uint16& v){ int i; bool r = luavalue_cast(index, i); v = i; return r; }
|
||||||
|
// uint32
|
||||||
|
inline void push_luavalue(uint32 v) { push_luavalue((double)v); }
|
||||||
|
inline bool luavalue_cast(int index, uint32& v) { double d; bool r = luavalue_cast(index, d); v = d; return r; }
|
||||||
|
// int64
|
||||||
|
inline void push_luavalue(int64 v) { push_luavalue((double)v); }
|
||||||
|
inline bool luavalue_cast(int index, int64& v) { double d; bool r = luavalue_cast(index, d); v = d; return r; }
|
||||||
|
// uint64
|
||||||
|
inline void push_luavalue(uint64 v) { push_luavalue((double)v); }
|
||||||
|
inline bool luavalue_cast(int index, uint64& v) { double d; bool r = luavalue_cast(index, d); v = d; return r; }
|
||||||
|
|
||||||
// string
|
// string
|
||||||
void push_luavalue(const char* cstr);
|
void push_luavalue(const char* cstr);
|
||||||
|
|
Loading…
Reference in New Issue