1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
//Global Declarations
rgb_matrix::Color RED(255, 0, 0);
rgb_matrix::Color textColor;
// rgb_matrix::Color textColor();
// rgb_matrix::Color textColor(int,int,int);
// rgb_matrix::Color textColor(0,0,0);
//void getRGB(std::string string, rgb_matrix::Color (*color)(int,int,int)) {
// std::string rgb[3];
// std::istringstream ss(string);
// int i = 0;
// do {
// ss >> rgb[i++];
// } while (ss);
// (*color)(std::stoi(rgb[0]),std::stoi(rgb[1]),std::stoi(rgb[2]));
//}
void getRGB(std::string string, rgb_matrix::Color color(int,int,int)) {
std::string rgb[3];
std::istringstream ss(string);
int i = 0;
do {
ss >> rgb[i++];
} while (ss);
color(std::stoi(rgb[0]),std::stoi(rgb[1]),std::stoi(rgb[2]));
}
int main() {
.
.
.
// I have my inputs/colors in a std::string array
getRGB(inputs[0],textColor)
Text_HasArrived(canvas, inputs[0],inputs[1],-2, textColor);
.
.
.
}
|