C# Класс EmptyKeys.UserInterface.Renderers.MonoGameRenderer

Implements Mono Game renderer
Наследование: Renderer
Показать файл Открыть проект

Открытые методы

Метод Описание
Begin ( ) : void

Begins the rendering

Begin ( EffectBase effect ) : void

Begins the rendering with custom effect

BeginClipped ( Rect clipRect ) : void

Begins the clipped.

BeginClipped ( Rect clipRect, EffectBase effect ) : void

Begins the clipped rendering with custom effect

CreateEffect ( object nativeEffect ) : EffectBase

Creates the effect.

CreateFont ( object nativeFont ) : FontBase

Creates the font.

CreateGeometryBuffer ( ) : GeometryBuffer

Creates the geometry buffer.

CreateTexture ( int width, int height, bool mipmap, bool dynamic ) : TextureBase

Creates the texture.

CreateTexture ( object nativeTexture ) : TextureBase

Creates the texture.

Draw ( TextureBase texture, PointF position, Size renderSize, ColorW color, Rect source, bool centerOrigin ) : void

Draws the specified texture.

Draw ( TextureBase texture, PointF position, Size renderSize, ColorW color, bool centerOrigin ) : void

Draws the specified texture.

DrawGeometryColor ( GeometryBuffer buffer, PointF position, ColorW color, float opacity, float depth ) : void

Draws the color of the geometry.

DrawGeometryTexture ( GeometryBuffer buffer, PointF position, TextureBase texture, float opacity, float depth ) : void

Draws the geometry texture.

DrawText ( FontBase font, string text, PointF position, Size renderSize, ColorW color, PointF scale, float depth ) : void

Draws the text.

End ( bool endEffect = false ) : void

Ends rendering

EndClipped ( bool endEffect = false ) : void

Ends the clipped drawing

GetSDFFontEffect ( ) : EffectBase

Gets the SDF font effect.

GetViewport ( ) : Rect

Gets the viewport.

IsClipped ( PointF position, Size renderSize ) : bool

Determines whether the specified rectangle is outside of clip bounds

MonoGameRenderer ( GraphicsDevice graphicsDevice, int nativeScreenWidth, int nativeScreenHeight ) : System

Initializes a new instance of the MonoGameRenderer class.

ResetNativeSize ( ) : void

Resets the size of the native. Sets NativeScreenWidth and NativeScreenHeight based on active back buffer

Приватные методы

Метод Описание
BeginClipped ( Rectangle clipRect ) : void

Begins the clipped.

DrawGeometry ( GeometryBuffer buffer, PointF position, float depth ) : void
UpdateCurrentEffect ( EffectBase effect ) : void

Описание методов

Begin() публичный Метод

Begins the rendering
public Begin ( ) : void
Результат void

Begin() публичный Метод

Begins the rendering with custom effect
public Begin ( EffectBase effect ) : void
effect EmptyKeys.UserInterface.Media.EffectBase The effect.
Результат void

BeginClipped() публичный Метод

Begins the clipped.
public BeginClipped ( Rect clipRect ) : void
clipRect Rect The clip rect.
Результат void

BeginClipped() публичный Метод

Begins the clipped rendering with custom effect
public BeginClipped ( Rect clipRect, EffectBase effect ) : void
clipRect Rect The clip rect.
effect EmptyKeys.UserInterface.Media.EffectBase The effect.
Результат void

CreateEffect() публичный Метод

Creates the effect.
public CreateEffect ( object nativeEffect ) : EffectBase
nativeEffect object The native effect.
Результат EmptyKeys.UserInterface.Media.EffectBase

CreateFont() публичный Метод

Creates the font.
public CreateFont ( object nativeFont ) : FontBase
nativeFont object The native font.
Результат EmptyKeys.UserInterface.Media.FontBase

CreateGeometryBuffer() публичный Метод

Creates the geometry buffer.
public CreateGeometryBuffer ( ) : GeometryBuffer
Результат EmptyKeys.UserInterface.Media.GeometryBuffer

CreateTexture() публичный Метод

Creates the texture.
public CreateTexture ( int width, int height, bool mipmap, bool dynamic ) : TextureBase
width int The width.
height int The height.
mipmap bool if set to true [mipmap].
dynamic bool if set to true [dynamic].
Результат EmptyKeys.UserInterface.Media.TextureBase

CreateTexture() публичный Метод

Creates the texture.
public CreateTexture ( object nativeTexture ) : TextureBase
nativeTexture object The native texture.
Результат EmptyKeys.UserInterface.Media.TextureBase

Draw() публичный Метод

Draws the specified texture.
public Draw ( TextureBase texture, PointF position, Size renderSize, ColorW color, Rect source, bool centerOrigin ) : void
texture EmptyKeys.UserInterface.Media.TextureBase The texture.
position PointF The position.
renderSize Size Size of the render.
color ColorW The color.
source Rect The source.
centerOrigin bool if set to true [center origin].
Результат void

Draw() публичный Метод

Draws the specified texture.
public Draw ( TextureBase texture, PointF position, Size renderSize, ColorW color, bool centerOrigin ) : void
texture EmptyKeys.UserInterface.Media.TextureBase The texture.
position PointF The position.
renderSize Size Size of the render.
color ColorW The color.
centerOrigin bool if set to true [center origin].
Результат void

DrawGeometryColor() публичный Метод

Draws the color of the geometry.
public DrawGeometryColor ( GeometryBuffer buffer, PointF position, ColorW color, float opacity, float depth ) : void
buffer EmptyKeys.UserInterface.Media.GeometryBuffer The buffer.
position PointF The position.
color ColorW The color.
opacity float The opacity.
depth float The depth.
Результат void

DrawGeometryTexture() публичный Метод

Draws the geometry texture.
public DrawGeometryTexture ( GeometryBuffer buffer, PointF position, TextureBase texture, float opacity, float depth ) : void
buffer EmptyKeys.UserInterface.Media.GeometryBuffer The buffer.
position PointF The position.
texture EmptyKeys.UserInterface.Media.TextureBase The texture.
opacity float The opacity.
depth float The depth.
Результат void

DrawText() публичный Метод

Draws the text.
public DrawText ( FontBase font, string text, PointF position, Size renderSize, ColorW color, PointF scale, float depth ) : void
font EmptyKeys.UserInterface.Media.FontBase The font.
text string The text.
position PointF The position.
renderSize Size Size of the render.
color ColorW The color.
scale PointF The scale.
depth float The depth.
Результат void

End() публичный Метод

Ends rendering
public End ( bool endEffect = false ) : void
endEffect bool
Результат void

EndClipped() публичный Метод

Ends the clipped drawing
public EndClipped ( bool endEffect = false ) : void
endEffect bool
Результат void

GetSDFFontEffect() публичный Метод

Gets the SDF font effect.
public GetSDFFontEffect ( ) : EffectBase
Результат EmptyKeys.UserInterface.Media.EffectBase

GetViewport() публичный Метод

Gets the viewport.
public GetViewport ( ) : Rect
Результат Rect

IsClipped() публичный Метод

Determines whether the specified rectangle is outside of clip bounds
public IsClipped ( PointF position, Size renderSize ) : bool
position PointF The position.
renderSize Size Size of the render.
Результат bool

MonoGameRenderer() публичный Метод

Initializes a new instance of the MonoGameRenderer class.
public MonoGameRenderer ( GraphicsDevice graphicsDevice, int nativeScreenWidth, int nativeScreenHeight ) : System
graphicsDevice GraphicsDevice The graphics device.
nativeScreenWidth int Width of the native screen.
nativeScreenHeight int Height of the native screen.
Результат System

ResetNativeSize() публичный Метод

Resets the size of the native. Sets NativeScreenWidth and NativeScreenHeight based on active back buffer
public ResetNativeSize ( ) : void
Результат void