RSDKv5
RSDKv5 Functions
Note
All functions' names and parameter lists are mainly written for the C API, but their usage differs in the C++ API. Refer to the Syntax and Example(s) sections of each page for how to use the functions in each language's API.
Audio
Function
Description
GetSfx
Retrieves the ID of the given sound effect.
PlaySfx
Plays the sound effect in the given slot, looping it if a loop point is set.
StopSfx
Stops all instances of the given sound effect playing.
PlayStream
Plays the given music file, looping it if set to do so.
SetChannelAttributes
Sets the volume, panning, and speed of the given channel to the given values.
StopChannel
Stops playing the currently playing audio in the given channel, if any is playing.
PauseChannel
Pauses the currently playing audio in the given channel, if any is playing.
ResumeChannel
If the given channel's audio has been paused with PauseChannel() , resumes playing the audio.
SfxPlaying
Checks if the given sound effect is playing in any channels.
ChannelActive
Checks if a channel is currently playing audio or is paused.
GetChannelPos
Gets the position of the current track in the given channel.
StopAllSfx
Stops all instances of all sound effects playing. RSDKv5U only.
SpriteSheets
Function
Description
LoadSpriteSheet
Loads a spritesheet and returns the ID of it.
Graphics
Debugging
Printing
Function
Description
PrintLog
Prints a message to the console.
PrintText
Prints a const char
string to the console.
PrintString
Prints a String variable to the console.
PrintUInt32
Prints an unsigned integer to the console.
PrintInt32
Prints a signed integer to the console.
PrintFloat
Prints a float value to the console.
PrintVector2
Prints a Vector2 variable to the console.
PrintHitbox
Prints a Hitbox variable to the console.
Objects & Entities
Function
Description
RSDK_THIS
Defines local pointer self
pointing to sceneInfo->entity
using the given object's entity struct.
RSDK_THIS_GEN
Defines local pointer self
pointing to sceneInfo->entity
using a generic entity struct.
RSDK_GET_ENTITY
Gets the data of the given entity using the given object's entity struct.
RSDK_GET_ENTITY_GEN
Gets the data of the given entity using a generic entity struct.
CREATE_ENTITY
Creates a temporary object specified by object
, data
, x
, and y
near the end of the object list.
INIT_ENTITY
Initializes the active
, visible
, and updateRange
values of the given entity.
GetEntitySlot
Gets the slot ID of an entity.
GetEntityCount
Gets the count of the amount of entities of the given object type currently in the stage.
GetDrawListRefSlot
Gets the entity slot in the given draw group at the given position.
GetDrawListRef
Gets a pointer to the entity in the given draw group at the given position.
ResetEntity
Resets entity
with the classID
and data
specified.
ResetEntitySlot
Resets the entity in slot
with the classID
and data
specified.
CopyEntity
Copies an entity into another entity.
CheckOnScreen
Checks if the given entity is on screen based on the given range.
CheckPosOnScreen
Checks if the given position is on screen based on the given range.
AddDrawListRef
Adds a reference to an entity to a draw group.
SwapDrawListEntries
Swaps the draw list positions of slot1
and slot2
in drawGroup
.
SetDrawGroupProperties
Sets the properties of drawGroup
.
FindObject
Finds a loaded object by name and retrieves its ID.
destroyEntity
Clears an entity's data.
destroyEntitySlot
Clears the entity of the given slot's data.
Scene Management
Function
Description
SetScene
Sets the scene category and list position to the matching scene entry in the GameConfig.
SetEngineState
Sets the state of the engine.
ForceHardReset
Sets whether the next stage reload should reload all assets.
CheckValidScene
Checks if SceneInfo->activeCategory
and SceneInfo->listPos
point to a valid scene in the GameConfig.
CheckSceneFolder
Reads the name of the current stage's folder.
LoadScene
Loads a stage based on SceneInfo->activeCategory
and SceneInfo->listPos
.
Videos & Images
Function
Description
LoadVideo
Loads and plays a video.
LoadImage
Loads and displays an image.
Miscellaneous
Editor
2025-01-31
2022-09-28
GitHub