Codechange: automatic adding of _t to (u)int types, and WChar to char32_t
for i in `find src -type f|grep -v 3rdparty/fmt|grep -v 3rdparty/catch2|grep -v 3rdparty/opengl|grep -v stdafx.h`; do sed 's/uint16& /uint16 \&/g;s/int8\([ >*),;[]\)/int8_t\1/g;s/int16\([ >*),;[]\)/int16_t\1/g;s/int32\([ >*),;[]\)/int32_t\1/g;s/int64\([ >*),;[]\)/int64_t\1/g;s/ uint32(/ uint32_t(/g;s/_uint8_t/_uint8/;s/Uint8_t/Uint8/;s/ft_int64_t/ft_int64/g;s/uint64$/uint64_t/;s/WChar/char32_t/g;s/char32_t char32_t/char32_t WChar/' -i $i; done
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
*/
|
||||
void Order::ConvertFromOldSavegame()
|
||||
{
|
||||
uint8 old_flags = this->flags;
|
||||
uint8_t old_flags = this->flags;
|
||||
this->flags = 0;
|
||||
|
||||
/* First handle non-stop - use value from savegame if possible, else use value from config file */
|
||||
@@ -79,7 +79,7 @@ void Order::ConvertFromOldSavegame()
|
||||
* @param packed packed order
|
||||
* @return unpacked order
|
||||
*/
|
||||
static Order UnpackVersion4Order(uint16 packed)
|
||||
static Order UnpackVersion4Order(uint16_t packed)
|
||||
{
|
||||
return Order(GB(packed, 8, 8) << 16 | GB(packed, 4, 4) << 8 | GB(packed, 0, 4));
|
||||
}
|
||||
@@ -89,7 +89,7 @@ static Order UnpackVersion4Order(uint16 packed)
|
||||
* @param packed packed order
|
||||
* @return unpacked order
|
||||
*/
|
||||
Order UnpackOldOrder(uint16 packed)
|
||||
Order UnpackOldOrder(uint16_t packed)
|
||||
{
|
||||
Order order = UnpackVersion4Order(packed);
|
||||
|
||||
@@ -141,9 +141,9 @@ struct ORDRChunkHandler : ChunkHandler {
|
||||
|
||||
if (IsSavegameVersionBefore(SLV_5)) {
|
||||
/* Pre-version 5 had another layout for orders
|
||||
* (uint16 instead of uint32) */
|
||||
len /= sizeof(uint16);
|
||||
std::vector<uint16> orders(len);
|
||||
* (uint16_t instead of uint32_t) */
|
||||
len /= sizeof(uint16_t);
|
||||
std::vector<uint16_t> orders(len);
|
||||
|
||||
SlCopy(&orders[0], len, SLE_UINT16);
|
||||
|
||||
@@ -152,8 +152,8 @@ struct ORDRChunkHandler : ChunkHandler {
|
||||
o->AssignOrder(UnpackVersion4Order(orders[i]));
|
||||
}
|
||||
} else if (IsSavegameVersionBefore(SLV_5, 2)) {
|
||||
len /= sizeof(uint32);
|
||||
std::vector<uint32> orders(len);
|
||||
len /= sizeof(uint32_t);
|
||||
std::vector<uint32_t> orders(len);
|
||||
|
||||
SlCopy(&orders[0], len, SLE_UINT32);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user