summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-04-20 13:44:12 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-04-20 13:44:12 +0000
commitb94970f6f79980a9b386cf499da31880006247b0 (patch)
treeeabcf286619c16645ec4b6303bd8696b84b60978 /tools
parenta49b45b9778208f4e3456a52c74554143974837b (diff)
downloadmana-client-b94970f6f79980a9b386cf499da31880006247b0.tar.gz
mana-client-b94970f6f79980a9b386cf499da31880006247b0.tar.bz2
mana-client-b94970f6f79980a9b386cf499da31880006247b0.tar.xz
mana-client-b94970f6f79980a9b386cf499da31880006247b0.zip
Merged revisions 3955-3960 via svnmerge from
https://themanaworld.svn.sourceforge.net/svnroot/themanaworld/tmw/branches/0.0 ........ r3955 | b_lindeijer | 2008-03-07 12:34:10 +0100 (Fri, 07 Mar 2008) | 2 lines Moved dynamically released data to its own module (tmwdata). ........ r3958 | crush_tmw | 2008-03-08 09:21:42 +0100 (Sat, 08 Mar 2008) | 1 line Fixed some width/height mixups in TMXCopy. ........ r3960 | b_lindeijer | 2008-03-08 12:19:13 +0100 (Sat, 08 Mar 2008) | 2 lines Forgot to also remove the maps. ........
Diffstat (limited to 'tools')
-rw-r--r--tools/tmxcopy/main.cpp16
-rw-r--r--tools/tmxcopy/map.cpp17
-rw-r--r--tools/tmxcopy/zlibutils.cpp2
3 files changed, 18 insertions, 17 deletions
diff --git a/tools/tmxcopy/main.cpp b/tools/tmxcopy/main.cpp
index 3d460961..92a69c54 100644
--- a/tools/tmxcopy/main.cpp
+++ b/tools/tmxcopy/main.cpp
@@ -28,15 +28,15 @@ int main(int argc, char * argv[] )
// parsing command line options
if (argc < 9 || argc > 10)
{
- std::cerr<<"Usage: srcFile x y height width tgtFile x y [outfile]";
+ std::cerr<<"Usage: srcFile x y width height tgtFile x y [outfile]";
return -1;
}
std::string srcFile = argv[1];
int srcX= atoi(argv[2]);
int srcY= atoi(argv[3]);
- int height= atoi(argv[4]);
- int width=atoi(argv[5]);
+ int width= atoi(argv[4]);
+ int height=atoi(argv[5]);
std::string tgtFile = argv[6];
int destX=atoi(argv[7]);
int destY=atoi(argv[8]);
@@ -44,7 +44,7 @@ int main(int argc, char * argv[] )
if (argc == 10) outFile = argv[9];
// plausibility check of command line options
- if (height < 1 || width < 1 || srcX < 1 || srcY < 1 || destX < 1 || destY < 1)
+ if (height < 1 || width < 1 || srcX < 0 || srcY < 0 || destX < 0 || destY < 0)
{
std::cerr<<"Illegal coordinates!"<<std::endl;
std::cerr<<"Usage: sourceFile x y height width targetFile x y [outputFile]"<<std::endl;
@@ -55,8 +55,12 @@ int main(int argc, char * argv[] )
{
Map* srcMap = new Map(srcFile);
Map* tgtMap = new Map(tgtFile);
- tgtMap->overwrite(srcMap, srcX, srcY, height, width, destX, destY);
- tgtMap->save(outFile);
+ if (tgtMap->overwrite(srcMap, srcX, srcY, width, height, destX, destY))
+ {
+ tgtMap->save(outFile);
+ } else {
+ return -1;
+ }
}
catch (int)
{
diff --git a/tools/tmxcopy/map.cpp b/tools/tmxcopy/map.cpp
index 0674ae1a..e0212e37 100644
--- a/tools/tmxcopy/map.cpp
+++ b/tools/tmxcopy/map.cpp
@@ -188,19 +188,19 @@ bool Map::overwrite( Map* srcMap,
//plausibility check of coordinates
bool checkPassed = true;
if (srcX + srcWidth > srcMap->getWidth()) {
- std::cerr<<"Error: Area exceeds right map border of source map!";
+ std::cerr<<"Error: Area exceeds right map border of source map!"<<std::endl;
checkPassed = false;
}
if (srcY + srcHeight > srcMap->getHeight()) {
- std::cerr<<"Error: Area exceeds lower map border of source map!";
+ std::cerr<<"Error: Area exceeds lower map border of source map!"<<std::endl;
checkPassed = false;
}
if (destX + srcWidth > mWidth) {
- std::cerr<<"Error: Area exceeds right map border of target map!";
+ std::cerr<<"Error: Area exceeds right map border of target map!"<<std::endl;
checkPassed = false;
}
if (destY + srcHeight > mHeight) {
- std::cerr<<"Error: Area exceeds lower map border of target map!";
+ std::cerr<<"Error: Area exceeds lower map border of target map!"<<std::endl;
checkPassed = false;
}
if (!checkPassed) return false;
@@ -235,10 +235,10 @@ bool Map::overwrite( Map* srcMap,
Layer* srcLayer = srcMap->getLayer(i);
Layer* destLayer = mLayers.at(i);
- for (int y=0; y<srcWidth; y++)
+ for (int y=0; y<srcHeight; y++)
{
- for (int x=0; x<srcHeight; x++)
+ for (int x=0; x<srcWidth; x++)
{
int srcIndex = srcMap->getWidth() * (y + srcY) + (x + srcX);
int tgtIndex = mWidth * (y + destY) + (x + destX);
@@ -319,8 +319,7 @@ int Map::save(std::string filename)
}
- // GZIP layer information
- // Doesn't work yet.
+ //GZIP layer information
/*
unsigned char* gzipData = (unsigned char*)malloc((mWidth * mHeight * 4) + 128);
unsigned int gzipLen;
@@ -365,7 +364,7 @@ int Map::save(std::string filename)
}
else
{
- std::cout<<"File saved successfully to"<<filename<<std::endl;
+ std::cout<<"File saved successfully to "<<filename<<std::endl;
return true;
}
}
diff --git a/tools/tmxcopy/zlibutils.cpp b/tools/tmxcopy/zlibutils.cpp
index 30c762b2..9145f459 100644
--- a/tools/tmxcopy/zlibutils.cpp
+++ b/tools/tmxcopy/zlibutils.cpp
@@ -109,8 +109,6 @@ inflateMemory(unsigned char *in, unsigned int inLength,
}
/*
- * This function doesn't work like it should. The output is not decompressable.
- */
int
compressMemory(unsigned char *in, unsigned int inLength,
unsigned char *&out, unsigned int &outLength)