379 lines
9.7 KiB
C++
379 lines
9.7 KiB
C++
/**
|
|
* C++ wrapper functions for raylib.
|
|
*/
|
|
#ifndef RAYLIB_CPP_INCLUDE_FUNCTIONS_HPP_
|
|
#define RAYLIB_CPP_INCLUDE_FUNCTIONS_HPP_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "./raylib.hpp"
|
|
|
|
/**
|
|
* Allow changing the declare type for all raylib-cpp global functions. Defaults to static.
|
|
*/
|
|
#ifndef RLCPPAPI
|
|
#define RLCPPAPI static
|
|
#endif
|
|
|
|
namespace raylib {
|
|
|
|
/**
|
|
* Initialize window and OpenGL context
|
|
*/
|
|
RLCPPAPI inline void InitWindow(int width, int height, const std::string& title = "raylib") {
|
|
::InitWindow(width, height, title.c_str());
|
|
}
|
|
|
|
/**
|
|
* Set title for window
|
|
*/
|
|
RLCPPAPI inline void SetWindowTitle(const std::string& title) {
|
|
::SetWindowTitle(title.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get the human-readable, UTF-8 encoded name of the primary monitor
|
|
*/
|
|
RLCPPAPI inline std::string GetMonitorName(int monitor = 0) {
|
|
return ::GetMonitorName(monitor);
|
|
}
|
|
|
|
/**
|
|
* Set clipboard text content
|
|
*/
|
|
RLCPPAPI inline void SetClipboardText(const std::string& text) {
|
|
::SetClipboardText(text.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get clipboard text content
|
|
*/
|
|
RLCPPAPI inline std::string GetClipboardText() {
|
|
return ::GetClipboardText();
|
|
}
|
|
|
|
/**
|
|
* Takes a screenshot of current screen (saved a .png)
|
|
*/
|
|
RLCPPAPI inline void TakeScreenshot(const std::string& fileName) {
|
|
::TakeScreenshot(fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get gamepad internal name id
|
|
*/
|
|
RLCPPAPI inline std::string GetGamepadName(int gamepad) {
|
|
return ::GetGamepadName(gamepad);
|
|
}
|
|
|
|
/**
|
|
* Load text data from file (read)
|
|
*/
|
|
RLCPPAPI std::string LoadFileText(const std::string& fileName) {
|
|
char* text = ::LoadFileText(fileName.c_str());
|
|
std::string output(text);
|
|
::UnloadFileText(text);
|
|
return output;
|
|
}
|
|
|
|
/**
|
|
* Save text data to file (write)
|
|
*/
|
|
RLCPPAPI inline bool SaveFileText(const std::string& fileName, const std::string& text) {
|
|
return ::SaveFileText(fileName.c_str(), const_cast<char*>(text.c_str()));
|
|
}
|
|
|
|
/**
|
|
* Check if file exists
|
|
*/
|
|
RLCPPAPI inline bool FileExists(const std::string& fileName) {
|
|
return ::FileExists(fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Check if directory path exists
|
|
*/
|
|
RLCPPAPI inline bool DirectoryExists(const std::string& dirPath) {
|
|
return ::DirectoryExists(dirPath.c_str());
|
|
}
|
|
|
|
/**
|
|
* Check file extension (including point: .png, .wav)
|
|
*/
|
|
RLCPPAPI inline bool IsFileExtension(const std::string& fileName, const std::string& ext) {
|
|
return ::IsFileExtension(fileName.c_str(), ext.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get pointer to extension for a filename string (including point: ".png")
|
|
*/
|
|
RLCPPAPI inline std::string GetFileExtension(const std::string& fileName) {
|
|
return ::GetFileExtension(fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get pointer to filename for a path string
|
|
*/
|
|
RLCPPAPI inline std::string GetFileName(const std::string& filePath) {
|
|
return ::GetFileName(filePath.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get filename string without extension
|
|
*/
|
|
RLCPPAPI inline std::string GetFileNameWithoutExt(const std::string& filePath) {
|
|
return ::GetFileNameWithoutExt(filePath.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get full path for a given fileName with path
|
|
*/
|
|
RLCPPAPI inline std::string GetDirectoryPath(const std::string& filePath) {
|
|
return ::GetDirectoryPath(filePath.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get previous directory path for a given path
|
|
*/
|
|
RLCPPAPI inline std::string GetPrevDirectoryPath(const std::string& dirPath) {
|
|
return ::GetPrevDirectoryPath(dirPath.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get current working directory
|
|
*/
|
|
RLCPPAPI inline std::string GetWorkingDirectory() {
|
|
return ::GetWorkingDirectory();
|
|
}
|
|
|
|
/**
|
|
* Get filenames in a directory path
|
|
*/
|
|
RLCPPAPI std::vector<std::string> LoadDirectoryFiles(const std::string& dirPath) {
|
|
FilePathList files = ::LoadDirectoryFiles(dirPath.c_str());
|
|
std::vector<std::string> output(files.paths, files.paths + files.count);
|
|
::UnloadDirectoryFiles(files);
|
|
return output;
|
|
}
|
|
|
|
/**
|
|
* Change working directory, return true on success
|
|
*/
|
|
RLCPPAPI inline bool ChangeDirectory(const std::string& dir) {
|
|
return ::ChangeDirectory(dir.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get dropped files names
|
|
*/
|
|
RLCPPAPI std::vector<std::string> LoadDroppedFiles() {
|
|
if (!::IsFileDropped()) {
|
|
return std::vector<std::string>();
|
|
}
|
|
FilePathList files = ::LoadDroppedFiles();
|
|
std::vector<std::string> output(files.paths, files.paths + files.count);
|
|
::UnloadDroppedFiles(files);
|
|
return output;
|
|
}
|
|
|
|
/**
|
|
* Get file modification time (last write time)
|
|
*/
|
|
RLCPPAPI inline long GetFileModTime(const std::string& fileName) { // NOLINT
|
|
return ::GetFileModTime(fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Open URL with default system browser (if available)
|
|
*/
|
|
RLCPPAPI inline void OpenURL(const std::string& url) {
|
|
return ::OpenURL(url.c_str());
|
|
}
|
|
|
|
/**
|
|
* Load an image.
|
|
*/
|
|
RLCPPAPI inline ::Image LoadImage(const std::string& fileName) {
|
|
return ::LoadImage(fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Load an image from RAW file data
|
|
*/
|
|
RLCPPAPI inline ::Image LoadImageRaw(const std::string& fileName,
|
|
int width, int height,
|
|
int format, int headerSize) {
|
|
return ::LoadImageRaw(fileName.c_str(), width, height, format, headerSize);
|
|
}
|
|
|
|
/**
|
|
* Load animated image data
|
|
*/
|
|
RLCPPAPI inline ::Image LoadImageAnim(const std::string& fileName, int *frames) {
|
|
return ::LoadImageAnim(fileName.c_str(), frames);
|
|
}
|
|
|
|
/**
|
|
* Load image from memory buffer, fileType refers to extension like "png"
|
|
*/
|
|
RLCPPAPI inline ::Image LoadImageFromMemory(const std::string& fileType,
|
|
const unsigned char *fileData,
|
|
int dataSize) {
|
|
return ::LoadImageFromMemory(fileType.c_str(), fileData, dataSize);
|
|
}
|
|
|
|
/**
|
|
* Export image data to file
|
|
*/
|
|
RLCPPAPI inline bool ExportImage(const Image& image, const std::string& fileName) {
|
|
return ::ExportImage(image, fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Export image as code file (.h) defining an array of bytes
|
|
*/
|
|
RLCPPAPI inline bool ExportImageAsCode(const Image& image, const std::string& fileName) {
|
|
return ::ExportImageAsCode(image, fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Draw text (using default font)
|
|
*/
|
|
RLCPPAPI inline void DrawText(const std::string& text, int posX, int posY, int fontSize, ::Color color) {
|
|
::DrawText(text.c_str(), posX, posY, fontSize, color);
|
|
}
|
|
|
|
/**
|
|
* Draw text using font and additional parameters
|
|
*/
|
|
RLCPPAPI inline void DrawTextEx(const Font& font, const std::string& text, Vector2 position,
|
|
float fontSize, float spacing, ::Color tint) {
|
|
::DrawTextEx(font, text.c_str(), position, fontSize, spacing, tint);
|
|
}
|
|
|
|
/**
|
|
* Draw text using Font and pro parameters (rotation)
|
|
*/
|
|
RLCPPAPI inline void DrawTextPro(const Font& font, const std::string& text, Vector2 position,
|
|
Vector2 origin, float rotation, float fontSize, float spacing, ::Color tint) {
|
|
::DrawTextPro(font, text.c_str(), position, origin, rotation, fontSize, spacing, tint);
|
|
}
|
|
|
|
/**
|
|
* Load font from file (filename must include file extension)
|
|
*/
|
|
RLCPPAPI inline ::Font LoadFont(const std::string& fileName) {
|
|
return ::LoadFont(fileName.c_str());
|
|
}
|
|
|
|
/**
|
|
* Load font from file (filename must include file extension)
|
|
*/
|
|
RLCPPAPI inline ::Font LoadFontEx(const std::string& fileName, int fontSize, int *fontChars, int charsCount) {
|
|
return ::LoadFontEx(fileName.c_str(), fontSize, fontChars, charsCount);
|
|
}
|
|
|
|
/**
|
|
* Measure string width for default font
|
|
*/
|
|
RLCPPAPI inline int MeasureText(const std::string& text, int fontSize) {
|
|
return ::MeasureText(text.c_str(), fontSize);
|
|
}
|
|
|
|
/**
|
|
* Check if two text string are equal
|
|
*/
|
|
RLCPPAPI inline bool TextIsEqual(const std::string& text1, const std::string& text2) {
|
|
return ::TextIsEqual(text1.c_str(), text2.c_str());
|
|
}
|
|
|
|
/**
|
|
* Check if two text string are equal
|
|
*/
|
|
RLCPPAPI inline unsigned int TextLength(const std::string& text) {
|
|
return ::TextLength(text.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get text length, checks for '\0' ending
|
|
*/
|
|
RLAPI inline std::string TextSubtext(const std::string& text, int position, int length) {
|
|
return ::TextSubtext(text.c_str(), position, length);
|
|
}
|
|
|
|
/**
|
|
* Replace text string
|
|
*/
|
|
RLAPI inline std::string TextReplace(const std::string& text, const std::string& replace, const std::string& by) {
|
|
const char* input = text.c_str();
|
|
char* output = ::TextReplace(const_cast<char*>(input), replace.c_str(), by.c_str());
|
|
if (output != NULL) {
|
|
std::string stringOutput(output);
|
|
free(output);
|
|
return stringOutput;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
/**
|
|
* Insert text in a position
|
|
*/
|
|
RLAPI inline std::string TextInsert(const std::string& text, const std::string& insert, int position) {
|
|
char* output = ::TextInsert(text.c_str(), insert.c_str(), position);
|
|
if (output != NULL) {
|
|
std::string stringOutput(output);
|
|
free(output);
|
|
return stringOutput;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
/**
|
|
* Split text into multiple strings
|
|
*/
|
|
RLAPI inline std::vector<std::string> TextSplit(const std::string& text, char delimiter) {
|
|
int count;
|
|
const char** split = ::TextSplit(text.c_str(), delimiter, &count);
|
|
return std::vector<std::string>(split, split + count);
|
|
}
|
|
|
|
/**
|
|
* Find first text occurrence within a string
|
|
*/
|
|
RLAPI inline int TextFindIndex(const std::string& text, const std::string& find) {
|
|
return ::TextFindIndex(text.c_str(), find.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get upper case version of provided string
|
|
*/
|
|
RLAPI inline std::string TextToUpper(const std::string& text) {
|
|
return ::TextToUpper(text.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get lower case version of provided string
|
|
*/
|
|
RLAPI inline std::string TextToLower(const std::string& text) {
|
|
return ::TextToLower(text.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get Pascal case notation version of provided string
|
|
*/
|
|
RLAPI inline std::string TextToPascal(const std::string& text) {
|
|
return ::TextToPascal(text.c_str());
|
|
}
|
|
|
|
/**
|
|
* Get integer value from text (negative values not supported)
|
|
*/
|
|
RLAPI inline int TextToInteger(const std::string& text) {
|
|
return ::TextToInteger(text.c_str());
|
|
}
|
|
|
|
} // namespace raylib
|
|
|
|
#endif // RAYLIB_CPP_INCLUDE_FUNCTIONS_HPP_
|