]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Skeleton.cpp
Added GPL license and headers.
[lugaru.git] / Source / Skeleton.cpp
index 3d94b9166fbe56747db125c8ab1fd018dbc8629a..c7314349755ecbe0412365b00653c33fb56388f0 100644 (file)
@@ -1,3 +1,24 @@
+/*
+Copyright (C) 2003, 2010 - Wolfire Games
+
+This file is part of Lugaru.
+
+Lugaru is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+
+See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+*/
+
 /**> HEADER FILES <**/
 #include "Skeleton.h"
 
@@ -1062,7 +1083,9 @@ void Animation::Load(char *filename, int aheight, int aattack)
                                funpackf(tfile, "Bf", &twist[j][i]);
                        }
                        for(j=0;j<joints;j++){
-                               funpackf(tfile, "Bb", &onground[j][i]);
+                               unsigned char uch;
+                               funpackf(tfile, "Bb", &uch);
+                               onground[j][i] = (uch != 0);
                        }
                        funpackf(tfile, "Bf", &speed[i]);
                }
@@ -1274,21 +1297,21 @@ void Skeleton::Load(char *filename,char *lowfilename,char *clothesfilename, char
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(float);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
@@ -1329,7 +1352,7 @@ void Skeleton::Load(char *filename,char *lowfilename,char *clothesfilename, char
 
 
                        }
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
@@ -1379,21 +1402,21 @@ void Skeleton::Load(char *filename,char *lowfilename,char *clothesfilename, char
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(float);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
@@ -1432,7 +1455,7 @@ void Skeleton::Load(char *filename,char *lowfilename,char *clothesfilename, char
                                        }
                                }
                        }
-                       lSize=sizeof(bool);
+                       lSize=1;//sizeof(bool);
                        fseek ( tfile, lSize, SEEK_CUR);
                        lSize=sizeof(int);
                        fseek ( tfile, lSize, SEEK_CUR);
@@ -1710,3 +1733,4 @@ Animation & Animation::operator = (const Animation & ani)
 
        return (*this);
 }
+