MezzanineEngine 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
gravityfield.cpp
1 // © Copyright 2010 - 2014 BlackTopp Studios Inc.
2 /* This file is part of The Mezzanine Engine.
3 
4  The Mezzanine Engine is free software: you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation, either version 3 of the License, or
7  (at your option) any later version.
8 
9  The Mezzanine Engine is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with The Mezzanine Engine. If not, see <http://www.gnu.org/licenses/>.
16 */
17 /* The original authors have included a copy of the license specified above in the
18  'Docs' folder. See 'gpl.txt'
19 */
20 /* We welcome the use of the Mezzanine engine to anyone, including companies who wish to
21  Build professional software and charge for their product.
22 
23  However there are some practical restrictions, so if your project involves
24  any of the following you should contact us and we will try to work something
25  out:
26  - DRM or Copy Protection of any kind(except Copyrights)
27  - Software Patents You Do Not Wish to Freely License
28  - Any Kind of Linking to Non-GPL licensed Works
29  - Are Currently In Violation of Another Copyright Holder's GPL License
30  - If You want to change our code and not add a few hundred MB of stuff to
31  your distribution
32 
33  These and other limitations could cause serious legal problems if you ignore
34  them, so it is best to simply contact us or the Free Software Foundation, if
35  you have any questions.
36 
37  Joseph Toppi - toppij@gmail.com
38  John Blackwood - makoenergy02@gmail.com
39 */
40 #ifndef _gravityfield_cpp
41 #define _gravityfield_cpp
42 
43 #include "gravityfield.h"
44 
45 #include "Physics/rigidproxy.h"
46 #include "Physics/physicsmanager.h"
47 
48 #include "entresol.h"
49 #include "serialization.h"
50 #include "exception.h"
51 
52 namespace Mezzanine
53 {
55  AreaEffect(TheWorld)
56  { }
57 
58  GravityField::GravityField(const String& Name, World* TheWorld) :
59  AreaEffect(Name,TheWorld)
60  { }
61 
62  GravityField::GravityField(const XML::Node& SelfRoot, World* TheWorld) :
63  AreaEffect(TheWorld)
64  { this->ProtoDeSerialize(SelfRoot); }
65 
67  { }
68 
69  ///////////////////////////////////////////////////////////////////////////////
70  // Utility
71 
72  Mezzanine::WorldObjectType GravityField::GetType() const
73  { return Mezzanine::WO_AreaEffectGravityField; }
74 
76  {
77  for( ObjectIterator AddedIt = this->AddedObjects.begin() ; AddedIt != this->AddedObjects.end() ; ++AddedIt )
78  {
79  ProxyContainer RigidProxies;
80  (*AddedIt)->GetProxies(Mezzanine::PT_Physics_RigidProxy,RigidProxies);
81  for( ProxyIterator ProxIt = RigidProxies.begin() ; ProxIt != RigidProxies.end() ; ++ProxIt )
82  {
83  Physics::RigidProxy* RigProx = static_cast<Physics::RigidProxy*>( *ProxIt );
84  RigProx->SetGravity(this->Grav);
85  }
86  }
87 
88  if( !RemovedObjects.empty() )
89  {
91 
92  for( ObjectIterator RemovedIt = this->RemovedObjects.begin() ; RemovedIt != this->RemovedObjects.end() ; ++RemovedIt )
93  {
94  ProxyContainer RigidProxies;
95  (*RemovedIt)->GetProxies(Mezzanine::PT_Physics_RigidProxy,RigidProxies);
96  for( ProxyIterator ProxIt = RigidProxies.begin() ; ProxIt != RigidProxies.end() ; ++ProxIt )
97  {
98  Physics::RigidProxy* RigProx = static_cast<Physics::RigidProxy*>( *ProxIt );
99  RigProx->SetGravity(WorldGravity);
100  }
101  }
102  }
103  }
104 
105  ///////////////////////////////////////////////////////////////////////////////
106  // GravityField Properties
107 
109  { this->Grav = Gravity; }
110 
112  { return this->Grav; }
113 
114  ///////////////////////////////////////////////////////////////////////////////
115  // Serialization
116 
118  {
119  this->AreaEffect::ProtoSerializeProperties(SelfRoot);
120 
121  XML::Node PropertiesNode = SelfRoot.AppendChild( WorldObject::GetSerializableName() + "Properties" );
122 
123  if( PropertiesNode.AppendAttribute("Version").SetValue("1") )
124  {
125  XML::Node GravityNode = PropertiesNode.AppendChild("Gravity");
126  this->GetFieldGravity().ProtoSerialize( GravityNode );
127 
128  return;
129  }else{
130  SerializeError("Create XML Attribute Values",WorldObject::GetSerializableName() + "Properties",true);
131  }
132  }
133 
135  {
137 
138  XML::Node PropertiesNode = SelfRoot.GetChild( WorldObject::GetSerializableName() + "Properties" );
139 
140  if( !PropertiesNode.Empty() ) {
141  if(PropertiesNode.GetAttribute("Version").AsInt() == 1) {
142  XML::Node GravityNode = PropertiesNode.GetChild("Gravity").GetFirstChild();
143  if( !GravityNode.Empty() ) {
144  Vector3 Gravity(GravityNode);
145  this->SetFieldGravity(Gravity);
146  }
147  }else{
148  MEZZ_EXCEPTION(Exception::INVALID_VERSION_EXCEPTION,"Incompatible XML Version for " + (WorldObject::GetSerializableName() + "Properties" ) + ": Not Version 1.");
149  }
150  }else{
151  MEZZ_EXCEPTION(Exception::II_IDENTITY_NOT_FOUND_EXCEPTION,WorldObject::GetSerializableName() + "Properties" + " was not found in the provided XML node, which was expected.");
152  }
153  }
154 
157 
159  { return "GravityField"; }
160 
161  ///////////////////////////////////////////////////////////////////////////////
162  // GravityFieldFactory Methods
163 
165  { }
166 
168  { }
169 
172 
174  { return new GravityField(Name,TheWorld); }
175 
177  { return static_cast<GravityField*>( this->CreateAreaEffect(XMLNode,TheWorld) ); }
178 
180  { return new GravityField(Name,TheWorld); }
181 
183  { return new GravityField(XMLNode,TheWorld); }
184 
186  { delete ToBeDestroyed; }
187 }//Mezzanine
188 
189 #endif