public class NiftyRenderDeviceProxy extends Object implements NiftyRenderEngine
| Constructor and Description |
|---|
NiftyRenderDeviceProxy() |
| Modifier and Type | Method and Description |
|---|---|
void |
beginFrame()
Called when a frame begins.
|
void |
clear()
Clear the screen.
|
RenderFont |
createFont(String name)
Create a new RenderFont.
|
NiftyImage |
createImage(String name,
boolean filterLinear)
Create a new Image.
|
void |
disableClip()
Disable the clipping.
|
void |
displayResolutionChanged()
This is called from Nifty when it receives the resolutionChange notify from application code.
|
void |
disposeImage(RenderImage image)
Dispose image.
|
void |
enableClip(int x0,
int y0,
int x1,
int y1)
Enable clipping to the given region.
|
void |
endFrame()
Called when a frame ends.
|
RenderFont |
getFont()
get font.
|
int |
getHeight()
Get Height of Display mode.
|
RenderDevice |
getRenderDevice()
Get RenderDevice.
|
Set<RenderStateType> |
getStates() |
int |
getWidth()
Get Width of Display mode.
|
boolean |
isColorAlphaChanged()
return true when color alpha has been changed.
|
boolean |
isColorChanged()
return true when color has been changed.
|
void |
moveTo(float param,
float param2)
Move to the given x/y position.
|
RenderImage |
reload(RenderImage image)
Dispose the given image and reload it.
|
void |
renderImage(NiftyImage image,
int x,
int y,
int width,
int height)
Render Image.
|
void |
renderQuad(int x,
int y,
int width,
int height)
render a quad.
|
void |
renderQuad(int x,
int y,
int width,
int height,
Color topLeft,
Color topRight,
Color bottomRight,
Color bottomLeft)
Renders a quad with different colors at the quad vertices.
|
void |
renderText(String text,
int x,
int y,
int selectionStart,
int selectionEnd,
Color c)
renderText.
|
void |
reset() |
void |
restoreState()
restore states.
|
void |
saveState(Set<RenderStateType> statesToSave)
save given states.
|
void |
setBlendMode(BlendMode blendMode)
Set BlendMode.
|
void |
setColor(Color colorParam)
Set a new color.
|
void |
setColorAlpha(float newColorAlpha)
set only the color alpha.
|
void |
setColorIgnoreAlpha(Color color)
Set only the color component of the given color.
|
void |
setFont(RenderFont font)
set font.
|
void |
setGlobalPosition(float pos,
float pos2)
set global position.
|
void |
setImageScale(float scale)
set image size.
|
void |
setRenderTextSize(float size)
Set RenderTextSize.
|
public void beginFrame()
NiftyRenderEnginebeginFrame in interface NiftyRenderEnginepublic void endFrame()
NiftyRenderEngineendFrame in interface NiftyRenderEnginepublic void clear()
NiftyRenderEngineclear in interface NiftyRenderEnginepublic RenderFont createFont(String name)
NiftyRenderEnginecreateFont in interface NiftyRenderEnginename - name of the fontpublic NiftyImage createImage(String name, boolean filterLinear)
NiftyRenderEnginecreateImage in interface NiftyRenderEnginename - file name to usefilterLinear - filterpublic void disableClip()
NiftyRenderEnginedisableClip in interface NiftyRenderEnginepublic void enableClip(int x0,
int y0,
int x1,
int y1)
NiftyRenderEngineenableClip in interface NiftyRenderEnginex0 - x0y0 - y0x1 - x1y1 - y1public int getHeight()
NiftyRenderEnginegetHeight in interface NiftyRenderEnginepublic int getWidth()
NiftyRenderEnginegetWidth in interface NiftyRenderEnginepublic void setColor(Color colorParam)
NiftyRenderEnginesetColor in interface NiftyRenderEnginecolorParam - new current color to setpublic void setColorAlpha(float newColorAlpha)
NiftyRenderEnginesetColorAlpha in interface NiftyRenderEnginenewColorAlpha - new alpha valuepublic void setColorIgnoreAlpha(Color color)
NiftyRenderEnginesetColorIgnoreAlpha in interface NiftyRenderEnginecolor - colorpublic boolean isColorChanged()
NiftyRenderEngineisColorChanged in interface NiftyRenderEnginepublic boolean isColorAlphaChanged()
NiftyRenderEngineisColorAlphaChanged in interface NiftyRenderEnginepublic void moveTo(float param,
float param2)
NiftyRenderEnginemoveTo in interface NiftyRenderEngineparam - xparam2 - ypublic void renderImage(NiftyImage image, int x, int y, int width, int height)
NiftyRenderEnginerenderImage in interface NiftyRenderEngineimage - the image to renderx - the x position on the screeny - the y position on the screenwidth - the widthheight - the heightpublic void renderQuad(int x,
int y,
int width,
int height)
NiftyRenderEnginerenderQuad in interface NiftyRenderEnginex - xy - ywidth - widthheight - heightpublic void renderQuad(int x,
int y,
int width,
int height,
Color topLeft,
Color topRight,
Color bottomRight,
Color bottomLeft)
NiftyRenderEnginerenderQuad in interface NiftyRenderEnginepublic void renderText(String text, int x, int y, int selectionStart, int selectionEnd, Color c)
NiftyRenderEnginerenderText in interface NiftyRenderEnginetext - textx - xy - yselectionStart - selection startselectionEnd - selection endc - color for text selectionspublic void restoreState()
NiftyRenderEnginerestoreState in interface NiftyRenderEnginepublic void saveState(Set<RenderStateType> statesToSave)
NiftyRenderEnginesaveState in interface NiftyRenderEnginestatesToSave - set of renderstates to savepublic void setFont(RenderFont font)
NiftyRenderEnginesetFont in interface NiftyRenderEnginefont - fontpublic RenderFont getFont()
NiftyRenderEnginegetFont in interface NiftyRenderEnginepublic void setGlobalPosition(float pos,
float pos2)
NiftyRenderEnginesetGlobalPosition in interface NiftyRenderEnginepos - xpos2 - ypublic void setImageScale(float scale)
NiftyRenderEnginesetImageScale in interface NiftyRenderEnginescale - new image sizepublic void setRenderTextSize(float size)
NiftyRenderEnginesetRenderTextSize in interface NiftyRenderEnginesize - sizepublic void setBlendMode(BlendMode blendMode)
NiftyRenderEnginesetBlendMode in interface NiftyRenderEnginepublic RenderDevice getRenderDevice()
NiftyRenderEnginegetRenderDevice in interface NiftyRenderEnginepublic void disposeImage(RenderImage image)
NiftyRenderEnginedisposeImage in interface NiftyRenderEngineimage - image to disposepublic void displayResolutionChanged()
NiftyRenderEnginedisplayResolutionChanged in interface NiftyRenderEnginepublic void reset()
public Set<RenderStateType> getStates()
public RenderImage reload(RenderImage image)
NiftyRenderEnginereload in interface NiftyRenderEngineimage - imageCopyright © 2013. All Rights Reserved.