Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
f01c9880
Commit
f01c9880
authored
13 years ago
by
Perttu Ahola
Browse files
Options
Downloads
Patches
Plain Diff
Some serialization version stuff
parent
677456d3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/game.cpp
+9
-0
9 additions, 0 deletions
src/game.cpp
src/nodedef.cpp
+22
-9
22 additions, 9 deletions
src/nodedef.cpp
with
31 additions
and
9 deletions
src/game.cpp
+
9
−
0
View file @
f01c9880
...
...
@@ -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\n
The server is probably "
L" running a different version of Minetest."
;
errorstream
<<
wide_to_narrow
(
error_message
)
<<
std
::
endl
;
}
if
(
!
sound_is_dummy
)
delete
sound
;
...
...
This diff is collapsed.
Click to expand it.
src/nodedef.cpp
+
22
−
9
View file @
f01c9880
...
...
@@ -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
os
2
(
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
(
os
2
.
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
is
2
(
deSerializeLongString
(
is
),
std
::
ios
::
binary
);
for
(
u16
n
=
0
;
n
<
count
;
n
++
){
u16
i
=
readU16
(
tmp_
is
);
u16
i
=
readU16
(
is
2
);
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
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment