rename -> ResidualVM

This commit is contained in:
Pawel Kolodziejski 2012-01-06 23:15:48 +01:00
parent 0cf49542fa
commit 626e91f23a
28 changed files with 56 additions and 110 deletions

View file

@ -1,8 +1,8 @@
This is a modified version of TinyGL 0.4 intended for use with Residual. This is a modified version of TinyGL 0.4 intended for use with ResidualVM.
The changes made from the original version of TinyGL 0.4 are: The changes made from the original version of TinyGL 0.4 are:
* Changed file extensions from *.c to *.cpp to compile as C++. * Changed file extensions from *.c to *.cpp to compile as C++.
* Included only files needed by Residual. * Included only files needed by ResidualVM.
* Changed include paths in source files. * Changed include paths in source files.
* Added needed type casts and fixes for proper compile. * Added needed type casts and fixes for proper compile.
* Added 't/T' prefix to prevent OpenGL name clashes. * Added 't/T' prefix to prevent OpenGL name clashes.

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "common/streamdebug.h" #include "common/streamdebug.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_ANGLE_H #ifndef MATH_ANGLE_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "math/line2d.h" #include "math/line2d.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_LINE2D_H #ifndef MATH_LINE2D_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "math/line3d.h" #include "math/line3d.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_LINE3D_H #ifndef MATH_LINE3D_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_FWD_H #ifndef MATH_FWD_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_MATRIX_H #ifndef MATH_MATRIX_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "math/matrix3.h" #include "math/matrix3.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_MATRIX3_H #ifndef MATH_MATRIX3_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "math/matrix4.h" #include "math/matrix4.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_MATRIX4_H #ifndef MATH_MATRIX4_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
// Quaternion-math borrowed from plib http://plib.sourceforge.net/index.html // Quaternion-math borrowed from plib http://plib.sourceforge.net/index.html

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
// Quaternion-math borrowed from plib http://plib.sourceforge.net/index.html // Quaternion-math borrowed from plib http://plib.sourceforge.net/index.html

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "common/scummsys.h" #include "common/scummsys.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_RECT2D_H #ifndef MATH_RECT2D_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_ROTATION3D_H #ifndef MATH_ROTATION3D_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_SQUAREMATRIX_H #ifndef MATH_SQUAREMATRIX_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_TRANSFORM_H #ifndef MATH_TRANSFORM_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_UTILS_H #ifndef MATH_UTILS_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_VECTOR_H #ifndef MATH_VECTOR_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "math/vector2d.h" #include "math/vector2d.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_VECTOR2D_H #ifndef MATH_VECTOR2D_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "common/streamdebug.h" #include "common/streamdebug.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_VECTOR3D_H #ifndef MATH_VECTOR3D_H

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#include "common/streamdebug.h" #include "common/streamdebug.h"

View file

@ -1,6 +1,6 @@
/* Residual - A 3D game interpreter /* ResidualVM - A 3D game interpreter
* *
* Residual is the legal property of its developers, whose names * ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT * are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution. * file distributed with this source distribution.
* *
@ -18,8 +18,6 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* *
* $URL$
* $Id$
*/ */
#ifndef MATH_VECTOR4D_H #ifndef MATH_VECTOR4D_H