Sirikata
libogre/include/sirikata/ogre/OgreConversions.hpp
Go to the documentation of this file.
00001 /*  Sirikata Graphical Object Host
00002  *  OgreConversions.hpp
00003  *
00004  *  Copyright (c) 2009, Daniel Reiter Horn
00005  *  All rights reserved.
00006  *
00007  *  Redistribution and use in source and binary forms, with or without
00008  *  modification, are permitted provided that the following conditions are
00009  *  met:
00010  *  * Redistributions of source code must retain the above copyright
00011  *    notice, this list of conditions and the following disclaimer.
00012  *  * Redistributions in binary form must reproduce the above copyright
00013  *    notice, this list of conditions and the following disclaimer in
00014  *    the documentation and/or other materials provided with the
00015  *    distribution.
00016  *  * Neither the name of Sirikata nor the names of its contributors may
00017  *    be used to endorse or promote products derived from this software
00018  *    without specific prior written permission.
00019  *
00020  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
00021  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
00022  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
00023  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
00024  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00025  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00026  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00027  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00028  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00029  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00030  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00031  */
00032 
00033 #ifndef OGRE_CONVERSIONS_HPP
00034 #define OGRE_CONVERSIONS_HPP
00035 
00036 namespace Sirikata {
00037 typedef Vector4f ColorAlpha;
00038 typedef Vector3f Color;
00039 namespace Graphics {
00040 inline Ogre::Quaternion toOgre(const Sirikata::Quaternion &quat) {
00041     Ogre::Quaternion ret;
00042     ret.w = quat.w;
00043     ret.x = quat.x;
00044     ret.y = quat.y;
00045     ret.z = quat.z;
00046     return ret;
00047 }
00048 
00049 inline Ogre::Vector3 toOgre(const Sirikata::Vector3f &pos) {
00050     return pos.convert<Ogre::Vector3>();
00051 }
00052 
00053 // Ogre uses floating points internally. Base should be equal to the translation of the scene.
00054 inline Ogre::Vector3 toOgre(const Sirikata::Vector3d &pos, const Sirikata::Vector3d &base) {
00055     return (pos - base).downCast<Ogre::Real>().convert<Ogre::Vector3>();
00056 }
00057 
00058 inline Ogre::Vector4 toOgre(const Sirikata::Vector4f &pos) {
00059     return pos.convert<Ogre::Vector4>();
00060 }
00061 
00062 inline Ogre::ColourValue toOgreRGBA(const Sirikata::ColorAlpha &rgba) {
00063     return rgba.convert<Ogre::ColourValue>();
00064 }
00065 
00066 inline Ogre::ColourValue toOgreRGB(const Sirikata::Color &rgb) {
00067     return rgb.convert<Ogre::ColourValue>();
00068 }
00069 
00070 inline Ogre::ColourValue toOgreRGBA(const Sirikata::Color &rgb, float32 alpha) {
00071     return Ogre::ColourValue(rgb[0], rgb[1], rgb[2], alpha);
00072 }
00073 
00074 inline Sirikata::Quaternion fromOgre(const Ogre::Quaternion &quat) {
00075     return Sirikata::Quaternion(quat.x,quat.y,quat.z,quat.w,Quaternion::XYZW());
00076 }
00077 
00078 inline Sirikata::Vector3f fromOgre(const Ogre::Vector3 &pos) {
00079     return Sirikata::Vector3f(pos);
00080 }
00081 
00082 inline Sirikata::Vector3d fromOgre(const Ogre::Vector3 &pos, const Vector3d &base) {
00083     return Sirikata::Vector3d(pos) + base;
00084 }
00085 
00086 inline Sirikata::Vector4f fromOgre(const Ogre::Vector4 &pos) {
00087     return Sirikata::Vector4f(pos.x,pos.y,pos.z,pos.w);
00088 }
00089 
00090 inline Sirikata::ColorAlpha fromOgreRGBA(const Ogre::ColourValue &rgba) {
00091     return Sirikata::ColorAlpha(rgba.r,rgba.b,rgba.g,rgba.a);
00092 }
00093 
00094 inline Sirikata::Color fromOgreRGB(const Ogre::ColourValue &rgba) {
00095     return Sirikata::Color(rgba.r,rgba.g,rgba.b);
00096 }
00097 }
00098 }
00099 #endif // OGRE_CONVERSIONS_HPP