Skip to content

Commit

Permalink
📚 Doxygen: + modules Gfx, Hydrax, Flex
Browse files Browse the repository at this point in the history
  • Loading branch information
ohlidalp committed Feb 24, 2022
1 parent 17b5e70 commit 65b4cd5
Show file tree
Hide file tree
Showing 42 changed files with 310 additions and 1 deletion.
5 changes: 5 additions & 0 deletions source/main/gfx/DustPool.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

class DustPool : public ZeroedMemoryAllocator
{
public:
Expand Down Expand Up @@ -84,4 +87,6 @@ class DustPool : public ZeroedMemoryAllocator
bool m_is_discarded;
};

/// @} // addtogroup Gfx

} // namespace RoRs
5 changes: 5 additions & 0 deletions source/main/gfx/EnvironmentMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

/// A dynamic environment probe; Creates a cubemap with realtime reflections around specified point.
class GfxEnvmap
{
Expand All @@ -49,4 +52,6 @@ class GfxEnvmap
int m_update_round; /// Render targets are updated one-by-one; this is the index of next target to update.
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/GfxActor.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

class GfxActor
{
friend class ActorSpawner; // The factory
Expand Down Expand Up @@ -331,4 +334,6 @@ class GfxActor
Ogre::MaterialPtr m_cab_mat_template_emissive;
};

/// @} // addtogroup Gfx

} // Namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/GfxData.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

enum PropAnimFlag
{
PROP_ANIM_FLAG_AIRSPEED = BITMASK(1),
Expand Down Expand Up @@ -234,4 +237,6 @@ struct FlareMaterial // materialflares
Ogre::ColourValue emissive_color;
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/GfxScene.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

/// Provides a 3D graphical representation of the simulation
/// Idea: simulation runs at it's own constant rate, scene updates and rendering run asynchronously.
class GfxScene
Expand Down Expand Up @@ -93,4 +96,6 @@ class GfxScene
SkidmarkConfig m_skidmark_conf;
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/HydraxWater.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

class HydraxWater : public IWater
{
public:
Expand Down Expand Up @@ -59,4 +62,6 @@ class HydraxWater : public IWater
Ogre::String CurrentConfigFile;
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/IWater.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

class IWater //!< TODO: Mixed gfx+physics (waves) - must be separated ~ only_a_ptr, 02/2018
{
public:
Expand Down Expand Up @@ -57,4 +60,6 @@ class IWater //!< TODO: Mixed gfx+physics (waves) - must be separated ~ only_a_p
virtual void ClearForcedCameraTransform() {};
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/MovableText.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
#include <OgreUTFString.h>
namespace RoR {

/// @addtogroup Gfx
/// @{

class MovableText : public Ogre::MovableObject, public Ogre::Renderable
{
/******************************** MovableText data ****************************/
Expand Down Expand Up @@ -127,5 +130,7 @@ class MovableText : public Ogre::MovableObject, public Ogre::Renderable
const Ogre::LightList &getLights(void) const {return mLList;};
};

/// @} // addtogroup Gfx

} // namespace

5 changes: 5 additions & 0 deletions source/main/gfx/Renderdash.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

/// 'renderdash' is a name of a classic Render-To-Texture animated material with gauges and other dashboard info.
class Renderdash: public Ogre::RenderTargetListener
{
Expand All @@ -51,4 +54,6 @@ class Renderdash: public Ogre::RenderTargetListener
Ogre::Overlay* m_needles_overlay;
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/ShadowManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

//Store datas using structs
struct PSSM_Shadows_Data
{
Expand Down Expand Up @@ -68,4 +71,6 @@ class ShadowManager : public ZeroedMemoryAllocator
PSSM_Shadows_Data PSSM_Shadows;
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/Skidmark.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class SkidmarkConfig //!< Skidmark config file parser and data container
std::map<Ogre::String, std::vector<SkidmarkDef>> m_models;
};

/// @addtogroup Gfx
/// @{

class Skidmark
{
public:
Expand Down Expand Up @@ -97,4 +100,6 @@ class Skidmark
SkidmarkConfig* m_config;
};

/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/SkyManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

class SkyManager : public ZeroedMemoryAllocator
{
public:
Expand All @@ -55,6 +58,8 @@ class SkyManager : public ZeroedMemoryAllocator
Caelum::CaelumSystem* m_caelum_system;
};

/// @} // addtogroup Gfx

} // namespace RoR

#endif // USE_CAELUM
7 changes: 6 additions & 1 deletion source/main/gfx/SkyXManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ along with Rigs of Rods. If not, see <http://www.gnu.org/licenses/>.

namespace RoR {

/// @addtogroup Gfx
/// @{

class SkyXManager : public ZeroedMemoryAllocator
{
public:
Expand Down Expand Up @@ -64,4 +67,6 @@ class SkyXManager : public ZeroedMemoryAllocator
int mLastHour = 0;
};

} // namespace RoRs
/// @} // addtogroup Gfx

} // namespace RoR
5 changes: 5 additions & 0 deletions source/main/gfx/Water.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@

namespace RoR {

/// @addtogroup Gfx
/// @{

class Water : public IWater, public ZeroedMemoryAllocator
{
public:
Expand Down Expand Up @@ -136,4 +139,6 @@ class Water : public IWater, public ZeroedMemoryAllocator
Ogre::Quaternion m_cam_forced_orientation;
};

/// @} // addtogroup Gfx

} // namespace RoR
9 changes: 9 additions & 0 deletions source/main/gfx/hydrax/CfgFileManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to

#include "Help.h"

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax
{
class Hydrax;
Expand Down Expand Up @@ -209,4 +215,7 @@ namespace Hydrax
};
};

/// @} // addtogroup Hydrax
/// @} // addtogroup Gfx

#endif
6 changes: 6 additions & 0 deletions source/main/gfx/hydrax/DecalsManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to

#include "Prerequisites.h"

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax
{
class Hydrax;
Expand Down
6 changes: 6 additions & 0 deletions source/main/gfx/hydrax/Enums.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to

#include "Prerequisites.h"

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax
{
/** Texture quality enumeration(2^n)
Expand Down
6 changes: 6 additions & 0 deletions source/main/gfx/hydrax/FFT.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to

#include <complex>

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax{ namespace Noise
{
/** FFT noise module class
Expand Down
9 changes: 9 additions & 0 deletions source/main/gfx/hydrax/GPUNormalMapManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to
#include "Enums.h"
#include "RttManager.h"

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax
{
class Hydrax;
Expand Down Expand Up @@ -152,4 +158,7 @@ namespace Hydrax
};
}

/// @} // addtogroup Hydrax
/// @} // addtogroup Gfx

#endif
6 changes: 6 additions & 0 deletions source/main/gfx/hydrax/GodRaysManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to

#include "Enums.h"

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax
{
class Hydrax;
Expand Down
9 changes: 9 additions & 0 deletions source/main/gfx/hydrax/Help.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to

#include "Prerequisites.h"

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax
{
/** Struct wich contains an especific width and height value
Expand Down Expand Up @@ -115,4 +121,7 @@ namespace Hydrax
};
}

/// @} // addtogroup Hydrax
/// @} // addtogroup Gfx

#endif
9 changes: 9 additions & 0 deletions source/main/gfx/hydrax/Hydrax.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ Place - Suite 330, Boston, MA 02111-1307, USA, or go to
#include "CfgFileManager.h"
#include "Module.h"

/// @addtogroup Gfx
/// @{

/// @addtogroup Hydrax
/// @{

namespace Hydrax
{
/** Main Hydrax class.
Expand Down Expand Up @@ -756,4 +762,7 @@ namespace Hydrax
};
}

/// @} // addtogroup Hydrax
/// @} // addtogroup Gfx

#endif
Loading

0 comments on commit 65b4cd5

Please # to comment.