476c2cce06
It is a metatable that can set/read text, x, y, and justification; and also read displayText, screenX, screenW, width, and height There is also a function sim.signs.new, it returns the new sign id or nil if it can't create a new sign
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
class VideoBuffer;
|
|
|
|
namespace format
|
|
{
|
|
const static char hex[] = "0123456789ABCDEF";
|
|
|
|
template <typename T> std::string NumberToString(T number)
|
|
{
|
|
std::stringstream ss;
|
|
ss << number;
|
|
return ss.str();
|
|
}
|
|
|
|
template <typename T> T StringToNumber(const std::string & text)
|
|
{
|
|
std::stringstream ss(text);
|
|
T number;
|
|
return (ss >> number)?number:0;
|
|
}
|
|
|
|
std::string URLEncode(std::string value);
|
|
std::string UnixtimeToDate(time_t unixtime, std::string dateFomat = "%d %b %Y");
|
|
std::string UnixtimeToDateMini(time_t unixtime);
|
|
std::string CleanString(std::string dirtyString, bool ascii, bool color, bool newlines, bool numeric = false);
|
|
std::string CleanString(const char * dirtyData, bool ascii, bool color, bool newlines, bool numeric = false);
|
|
std::vector<char> VideoBufferToPNG(const VideoBuffer & vidBuf);
|
|
std::vector<char> VideoBufferToBMP(const VideoBuffer & vidBuf);
|
|
std::vector<char> VideoBufferToPPM(const VideoBuffer & vidBuf);
|
|
std::vector<char> VideoBufferToPTI(const VideoBuffer & vidBuf);
|
|
VideoBuffer * PTIToVideoBuffer(std::vector<char> & data);
|
|
unsigned long CalculateCRC(unsigned char * data, int length);
|
|
}
|