|
| | CDebugSerializer (ScriptInterface &scriptInterface, std::ostream &stream, bool includeDebugInfo=true) |
| |
| void | Comment (const std::string &comment) |
| |
| void | TextLine (const std::string &text) |
| |
| void | Indent (int spaces) |
| |
| void | Dedent (int spaces) |
| |
| virtual bool | IsDebug () const |
| | Returns true if the serializer is being used in debug mode. More...
|
| |
| virtual std::ostream & | GetStream () |
| | Returns a stream which can be used to serialize data directly. More...
|
| |
| virtual | ~ISerializer () |
| |
| void | NumberU8 (const char *name, uint8_t value, uint8_t lower, uint8_t upper) |
| | Serialize a number, which must be lower <= value <= upper. More...
|
| |
| void | NumberI8 (const char *name, int8_t value, int8_t lower, int8_t upper) |
| |
| void | NumberU16 (const char *name, uint16_t value, uint16_t lower, uint16_t upper) |
| | Serialize a number, which must be lower <= value <= upper. More...
|
| |
| void | NumberI16 (const char *name, int16_t value, int16_t lower, int16_t upper) |
| | Serialize a number, which must be lower <= value <= upper. More...
|
| |
| void | NumberU32 (const char *name, uint32_t value, uint32_t lower, uint32_t upper) |
| | Serialize a number, which must be lower <= value <= upper. More...
|
| |
| void | NumberI32 (const char *name, int32_t value, int32_t lower, int32_t upper) |
| | Serialize a number, which must be lower <= value <= upper. More...
|
| |
| void | NumberU8_Unbounded (const char *name, uint8_t value) |
| | Serialize a number. More...
|
| |
| void | NumberI8_Unbounded (const char *name, int8_t value) |
| | Serialize a number. More...
|
| |
| void | NumberU16_Unbounded (const char *name, uint16_t value) |
| | Serialize a number. More...
|
| |
| void | NumberI16_Unbounded (const char *name, int16_t value) |
| | Serialize a number. More...
|
| |
| void | NumberU32_Unbounded (const char *name, uint32_t value) |
| | Serialize a number. More...
|
| |
| void | NumberI32_Unbounded (const char *name, int32_t value) |
| | Serialize a number. More...
|
| |
| void | NumberFloat_Unbounded (const char *name, float value) |
| | Serialize a number. More...
|
| |
| void | NumberDouble_Unbounded (const char *name, double value) |
| | Serialize a number. More...
|
| |
| void | NumberFixed_Unbounded (const char *name, fixed value) |
| | Serialize a number. More...
|
| |
| void | Bool (const char *name, bool value) |
| | Serialize a boolean. More...
|
| |
| void | StringASCII (const char *name, const std::string &value, uint32_t minlength, uint32_t maxlength) |
| | Serialize an ASCII string. More...
|
| |
| void | String (const char *name, const std::wstring &value, uint32_t minlength, uint32_t maxlength) |
| | Serialize a Unicode string. More...
|
| |
| void | ScriptVal (const char *name, jsval value) |
| | Serialize a jsval. More...
|
| |
| void | ScriptVal (const char *name, CScriptVal value) |
| | Serialize a CScriptVal. More...
|
| |
| void | ScriptVal (const char *name, CScriptValRooted value) |
| | Serialize a CScriptValRooted. More...
|
| |
| void | RawBytes (const char *name, const u8 *data, size_t len) |
| | Serialize a stream of bytes. More...
|
| |
|
| virtual void | PutNumber (const char *name, uint8_t value) |
| |
| virtual void | PutNumber (const char *name, int8_t value) |
| |
| virtual void | PutNumber (const char *name, uint16_t value) |
| |
| virtual void | PutNumber (const char *name, int16_t value) |
| |
| virtual void | PutNumber (const char *name, uint32_t value) |
| |
| virtual void | PutNumber (const char *name, int32_t value) |
| |
| virtual void | PutNumber (const char *name, float value) |
| |
| virtual void | PutNumber (const char *name, double value) |
| |
| virtual void | PutNumber (const char *name, fixed value) |
| |
| virtual void | PutBool (const char *name, bool value) |
| |
| virtual void | PutString (const char *name, const std::string &value) |
| |
| virtual void | PutScriptVal (const char *name, jsval value) |
| |
| virtual void | PutRaw (const char *name, const u8 *data, size_t len) |
| |
Serialize to a human-readable YAML-like format.
Definition at line 26 of file DebugSerializer.h.