1
0
forked from 0ad/0ad
0ad/source/tools/atlas/DatafileIO/Util.h
Ykkrosh a56bd4b2c1 Add GPL header to Atlas code
This was SVN commit r6910.
2009-06-20 16:13:29 +00:00

59 lines
1.6 KiB
C++

/* Copyright (C) 2009 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. 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.
*
* 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string>
#include <cassert>
#ifndef C_ASSERT
#define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]
#endif
namespace DatafileIO
{
#ifdef _WIN32
// TODO: proper portability
typedef int int32_t;
typedef unsigned int uint32_t;
typedef unsigned short uint16_t;
typedef std::wstring utf16string;
typedef wchar_t utf16_t;
#else
typedef uint16_t utf16_t;
typedef std::basic_string<utf16_t> utf16string;
#endif
C_ASSERT(sizeof(int32_t) == 4);
C_ASSERT(sizeof(uint32_t) == 4);
C_ASSERT(sizeof(uint16_t) == 2);
C_ASSERT(sizeof(utf16_t) == 2);
class InputStream;
class OutputStream;
// Read/write 4-byte length + UCS-2 string
utf16string ReadUString(InputStream& stream);
void WriteUString(OutputStream& stream, const utf16string& string);
#ifdef _WIN32
# define utf16tow(_str) _str
# define wtoutf16(_str) _str
#else
std::wstring utf16tow(const utf16string &str);
utf16string wtoutf16(const std::wstring &str);
#endif
}