本文整理汇总了C++中MOAILuaState::Inflate方法的典型用法代码示例。如果您正苦于以下问题:C++ MOAILuaState::Inflate方法的具体用法?C++ MOAILuaState::Inflate怎么用?C++ MOAILuaState::Inflate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MOAILuaState
的用法示例。
在下文中一共展示了MOAILuaState::Inflate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: _inflate
/** @name inflate
@text Decompresses the string or the current data stored in this object using the DEFLATE algorithm.
@opt MOAIDataBuffer self
@opt string data The string data to inflate. You must either provide either a MOAIDataBuffer (via a :base64Decode type call) or string data (via a .base64Decode type call), but not both.
@in number windowBits The window bits used in the DEFLATE algorithm. Pass nil to use the default value.
@out string output If passed a string, returns either a string or nil depending on whether it could be decompressed. Otherwise the decompression occurs inline on the existing data buffer in this object, and nil is returned.
*/
int MOAIDataBuffer::_inflate ( lua_State* L ) {
MOAILuaState state ( L );
int windowBits = state.GetValue < int >( 2, USDeflateReader::DEFAULT_WBITS );
if ( state.IsType ( 1, LUA_TSTRING )) {
return state.Inflate ( 1, windowBits ) ? 1 : 0;
}
MOAIDataBuffer* self = state.GetLuaObject < MOAIDataBuffer >( 1, true );
if ( self ) {
self->Inflate ( windowBits );
}
return 0;
}