00001 #ifndef PERIAPSIS_SPACE_CARTO_BODY_H 00002 #define PERIAPSIS_SPACE_CARTO_BODY_H 00003 00004 // 00005 // $Id: rotating_body.hpp 2 2008-03-01 20:58:50Z kulibali $ 00006 // 00007 // Copyright (c) 2008, The Periapsis Project. All rights reserved. 00008 // 00009 // Redistribution and use in source and binary forms, with or without 00010 // modification, are permitted provided that the following conditions are 00011 // met: 00012 // 00013 // * Redistributions of source code must retain the above copyright notice, 00014 // this list of conditions and the following disclaimer. 00015 // 00016 // * Redistributions in binary form must reproduce the above copyright 00017 // notice, this list of conditions and the following disclaimer in the 00018 // documentation and/or other materials provided with the distribution. 00019 // 00020 // * Neither the name of the The Periapsis Project nor the names of its 00021 // contributors may be used to endorse or promote products derived from 00022 // this software without specific prior written permission. 00023 // 00024 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS 00025 // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 00026 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 00027 // PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER 00028 // OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00029 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00030 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00031 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00032 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00033 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00034 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00035 // 00036 00037 #include "space/space.hpp" 00038 #include "data/broker.hpp" 00039 #include "scenegraph/node.hpp" 00040 #include "physics/physics_frame.hpp" 00041 00042 namespace periapsis 00043 { 00044 00045 namespace space 00046 { 00047 00048 /// Base class for celestial body rotators. 00049 class SPACE_API body_rotator 00050 : public gsgl::data::brokered_object 00051 { 00052 public: 00053 virtual void calc_orientation(double jdn, gsgl::math::transform & orientation, gsgl::math::vector & angular_velocity) = 0; 00054 00055 protected: 00056 void calc_orientation_aux(double alpha, double delta, double W, gsgl::math::transform & orientation); 00057 void calc_angular_velocity_aux(double ang_diff, double d, const gsgl::math::transform & orientation, gsgl::math::vector & angular_velocity); 00058 }; // class body_rotator 00059 00060 00061 /// Implements bodies that are rotated using a body_rotator. 00062 class SPACE_API rotating_body 00063 : public gsgl::physics::physics_frame 00064 { 00065 body_rotator *rotator; 00066 00067 public: 00068 rotating_body(const gsgl::string & name, gsgl::scenegraph::node *parent, body_rotator *rotator); 00069 virtual ~rotating_body(); 00070 00071 virtual void init(gsgl::scenegraph::context *); 00072 virtual void update(gsgl::scenegraph::context *); 00073 }; // class rotating_body 00074 00075 } // namespace space 00076 00077 } // namespace periapsis 00078 00079 #endif