Skip to content
Snippets Groups Projects
Commit f01c9880 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Some serialization version stuff

parent 677456d3
No related branches found
No related tags found
No related merge requests found
......@@ -991,6 +991,7 @@ void the_game(
server->start(port);
}
try{
do{ // Client scope (breakable do-while(0))
/*
......@@ -2911,6 +2912,14 @@ void the_game(
// Client scope (client is destructed before destructing *def and tsrc)
}while(0);
} // try-catch
catch(SerializationError &e)
{
error_message = L"A serialization error occurred:\n"
+ narrow_to_wide(e.what()) + L"\n\nThe server is probably "
L" running a different version of Minetest.";
errorstream<<wide_to_narrow(error_message)<<std::endl;
}
if(!sound_is_dummy)
delete sound;
......
......@@ -162,7 +162,7 @@ void ContentFeatures::reset()
void ContentFeatures::serialize(std::ostream &os)
{
writeU8(os, 2); // version
writeU8(os, 3); // version
os<<serializeString(name);
writeU16(os, groups.size());
for(ItemGroupList::const_iterator
......@@ -212,7 +212,7 @@ void ContentFeatures::serialize(std::ostream &os)
void ContentFeatures::deSerialize(std::istream &is)
{
int version = readU8(is);
if(version != 2)
if(version != 3)
throw SerializationError("unsupported ContentFeatures version");
name = deSerializeString(is);
groups.clear();
......@@ -258,6 +258,8 @@ void ContentFeatures::deSerialize(std::istream &is)
selection_box.deSerialize(is);
legacy_facedir_simple = readU8(is);
legacy_wallmounted = readU8(is);
// If you add anything here, insert it primarily inside the try-catch
// block to not need to increase the version.
try{
deSerializeSimpleSoundSpec(sound_footstep, is);
deSerializeSimpleSoundSpec(sound_dig, is);
......@@ -566,8 +568,9 @@ class CNodeDefManager: public IWritableNodeDefManager
}
void serialize(std::ostream &os)
{
writeU8(os, 1); // version
u16 count = 0;
std::ostringstream tmp_os(std::ios::binary);
std::ostringstream os2(std::ios::binary);
for(u16 i=0; i<=MAX_CONTENT; i++)
{
if(i == CONTENT_IGNORE || i == CONTENT_AIR)
......@@ -575,20 +578,27 @@ class CNodeDefManager: public IWritableNodeDefManager
ContentFeatures *f = &m_content_features[i];
if(f->name == "")
continue;
writeU16(tmp_os, i);
f->serialize(tmp_os);
writeU16(os2, i);
// Wrap it in a string to allow different lengths without
// strict version incompatibilities
std::ostringstream wrapper_os(std::ios::binary);
f->serialize(wrapper_os);
os2<<serializeString(wrapper_os.str());
count++;
}
writeU16(os, count);
os<<serializeLongString(tmp_os.str());
os<<serializeLongString(os2.str());
}
void deSerialize(std::istream &is)
{
clear();
int version = readU8(is);
if(version != 1)
throw SerializationError("unsupported NodeDefinitionManager version");
u16 count = readU16(is);
std::istringstream tmp_is(deSerializeLongString(is), std::ios::binary);
std::istringstream is2(deSerializeLongString(is), std::ios::binary);
for(u16 n=0; n<count; n++){
u16 i = readU16(tmp_is);
u16 i = readU16(is2);
if(i > MAX_CONTENT){
errorstream<<"ContentFeatures::deSerialize(): "
<<"Too large content id: "<<i<<std::endl;
......@@ -598,7 +608,10 @@ class CNodeDefManager: public IWritableNodeDefManager
if(i == CONTENT_IGNORE || i == CONTENT_AIR)
continue;*/
ContentFeatures *f = &m_content_features[i];
f->deSerialize(tmp_is);
// Read it from the string wrapper
std::string wrapper = deSerializeString(is2);
std::istringstream wrapper_is(wrapper, std::ios::binary);
f->deSerialize(wrapper_is);
if(f->name != "")
addNameIdMapping(i, f->name);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment