summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-27 03:40:45 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-10-27 03:50:56 +0100
commit69cd15f050cdef9f4f82bd4d9ff2f54dd37c87d1 (patch)
tree58a660decbe74f768eb2211a9604487d5b55de7c /crawl-ref/source/travel.cc
parentc9b7a93349b9215c94dd48f4e51023f4047cd820 (diff)
downloadcrawl-ref-69cd15f050cdef9f4f82bd4d9ff2f54dd37c87d1.tar.gz
crawl-ref-69cd15f050cdef9f4f82bd4d9ff2f54dd37c87d1.zip
Move exclusion marshalling code to exclude.cc.
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc32
1 files changed, 2 insertions, 30 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index 14eb85f72d..079b4a877d 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -3314,17 +3314,7 @@ void LevelInfo::save(writer& outf) const
}
}
- marshallShort(outf, excludes.size());
- if (excludes.size())
- {
- for (int i = 0, count = excludes.size(); i < count; ++i)
- {
- marshallCoord(outf, excludes[i].pos);
- marshallShort(outf, excludes[i].radius);
- marshallBoolean(outf, excludes[i].autoex);
- marshallShort(outf, excludes[i].mon);
- }
- }
+ marshallExcludes(outf, excludes);
}
void LevelInfo::load(reader& inf, char minorVersion)
@@ -3354,25 +3344,7 @@ void LevelInfo::load(reader& inf, char minorVersion)
stair_distances.push_back( unmarshallShort(inf) );
}
- excludes.clear();
- int nexcludes = unmarshallShort(inf);
- if (nexcludes)
- {
- for (int i = 0; i < nexcludes; ++i)
- {
- coord_def c;
- unmarshallCoord(inf, c);
- const int radius = unmarshallShort(inf);
- bool autoexcl = false;
- monster_type mon = MONS_NO_MONSTER;
- if (minorVersion >= TAG_ANNOTATE_EXCL)
- {
- autoexcl = unmarshallBoolean(inf);
- mon = static_cast<monster_type>(unmarshallShort(inf));
- }
- excludes.push_back(travel_exclude(c, radius, autoexcl, mon));
- }
- }
+ unmarshallExcludes(inf, minorVersion, excludes);
}
void LevelInfo::fixup()