SaturnRingLibrary 0.9
SGL wrapper
 
Loading...
Searching...
No Matches
SRL::Scene2D Class Reference

Detailed Description

Rendering of VDP1 sprites and shapes.

#include <srl_scene2d.hpp>

Public Types

enum  ClippingEffect : uint8_t { NoClipping = 0 , ClipOutside = 2 , ClipInside = 3 }
 Clipping effect mode. More...
 
enum  FlipEffect : uint8_t { NoFlip = 0 , HorizontalFlip = 1 , VerticalFlip = 2 }
 Sprite flip effect. More...
 
enum  SpriteEffect : uint8_t {
  Gouraud = 0 , ScreenDoors = 1 , HalfTransparency = 2 , Clipping = 3 ,
  Flip = 4 , OpacityBank = 5
}
 List of all available sprite effects. More...
 

Static Public Member Functions

Draw functions
static bool DrawSprite (const uint16_t texture, SRL::CRAM::Palette *texturePalette, const SRL::Math::Types::Vector2D points[4], const SRL::Math::Types::Fxp depth)
 Draw sprite from 4 points.
 
static bool DrawSprite (const uint16_t texture, const SRL::Math::Types::Vector2D points[4], const SRL::Math::Types::Fxp depth)
 Draw sprite from 4 points.
 
static bool DrawSprite (const uint16_t texture, SRL::CRAM::Palette *texturePalette, const SRL::Math::Types::Vector3D &location, const SRL::Math::Types::Angle &angle=SRL::Math::Types::Angle(), const SRL::Math::Types::Vector2D &scale=SRL::Math::Types::Vector2D(1.0, 1.0))
 Draw simple sprite.
 
static bool DrawSprite (const uint16_t texture, const SRL::Math::Types::Vector3D &location, const SRL::Math::Types::Angle &angle=SRL::Math::Types::Angle::Zero(), const SRL::Math::Types::Vector2D &scale=SRL::Math::Types::Vector2D(1.0, 1.0))
 Draw simple sprite.
 
static bool DrawSprite (const uint16_t texture, const SRL::Math::Types::Vector3D &location, const SRL::Math::Types::Vector2D &scale)
 Draw simple sprite.
 
static bool DrawSprite (const uint16_t texture, SRL::CRAM::Palette *texturePalette, const SRL::Math::Types::Vector3D &location, const SRL::Math::Types::Vector2D &scale)
 Draw simple sprite.
 
static bool DrawLine (const SRL::Math::Types::Vector2D &start, const SRL::Math::Types::Vector2D &end, const Types::HighColor &color, const SRL::Math::Types::Fxp sort)
 Draws a Line.
 
static bool DrawPolygon (SRL::Math::Types::Vector2D points[4], const bool fill, const Types::HighColor &color, const SRL::Math::Types::Fxp sort)
 Draws a generic polygon.
 
Sprite effect functions
static bool SetClippingRectangle (const SRL::Math::Types::Vector3D &location, const SRL::Math::Types::Vector2D &size)
 Set the Clipping rectangle.
 
static void SetEffect (const SpriteEffect effect, const int32_t data=-1)
 Set sprite effect.
 
static int32_t GetEffect (const SpriteEffect effect)
 Get currently set effect value.