2019-11-14 13:12:48 +01:00
|
|
|
//#include "add.h"
|
2019-10-15 16:12:56 +02:00
|
|
|
#include "Bitmap.h"
|
2019-11-19 13:27:18 +01:00
|
|
|
#include "Font.h"
|
2019-11-14 13:12:48 +01:00
|
|
|
|
|
|
|
#include <iostream>
|
2019-10-15 14:00:06 +02:00
|
|
|
|
2019-11-19 13:27:18 +01:00
|
|
|
bool isQuit(std::string command);
|
|
|
|
|
2019-10-16 15:44:13 +02:00
|
|
|
/**
|
2019-10-15 16:12:56 +02:00
|
|
|
* @author: Julian Hinxlage
|
|
|
|
* @since: v0.0.0
|
|
|
|
* @brief: An image is loaded and used as a font.
|
|
|
|
* A string is converted and displayed in the console.
|
|
|
|
* Currently only to test.
|
|
|
|
*/
|
2019-11-19 13:27:18 +01:00
|
|
|
|
|
|
|
#include "TextRenderer.h"
|
2019-11-20 15:51:01 +01:00
|
|
|
void outPutPixel(int windowHeight, int windowWidth, vkvm::Color fontColor);
|
2019-11-19 13:27:18 +01:00
|
|
|
|
2019-10-15 14:00:06 +02:00
|
|
|
int main() {
|
2019-11-19 13:47:30 +01:00
|
|
|
vkvm::initialize(0);
|
|
|
|
|
2019-11-19 13:27:18 +01:00
|
|
|
std::string currentText;
|
|
|
|
|
2019-11-20 12:50:32 +01:00
|
|
|
/*************************set back to shared memory(only for test)********************************************/
|
2019-11-26 15:49:51 +01:00
|
|
|
int windowWidth = vkvm::getWidth();
|
|
|
|
int windowHeight = vkvm::getHeight();
|
2019-11-20 15:51:01 +01:00
|
|
|
vkvm::setWidth(windowWidth);
|
|
|
|
vkvm::setHeight(windowHeight);
|
|
|
|
|
2019-11-20 12:50:32 +01:00
|
|
|
vkvm::Color fontColor1(0, 0, 0);
|
|
|
|
vkvm::Color backgroudColor1(255, 255, 255);
|
|
|
|
Font font1("../res/font3.bmp", "../res/font3.toml");
|
|
|
|
vkvm::setFont(vkvm::FontType(3, "font", font1.height(), font1.width()));
|
|
|
|
vkvm::setForegroundColor(fontColor1);
|
|
|
|
vkvm::setBackgroundColor(backgroudColor1);
|
|
|
|
/**************************get text and font from shared memory*******************************************/
|
|
|
|
std::string fontResourcePath = "../res/font" + std::to_string(vkvm::getFont().getId()) + ".bmp";
|
|
|
|
std::string fontConfigureFilePath = "../res/font" + std::to_string(vkvm::getFont().getId()) + ".toml";
|
|
|
|
Font font = Font(fontResourcePath, fontConfigureFilePath);
|
|
|
|
vkvm::Color fontColor = vkvm::getForegroundColor();
|
|
|
|
vkvm::Color backgroundColor = vkvm::getBackgroundColor();
|
2019-11-20 15:51:01 +01:00
|
|
|
TextRenderer textRenderer(windowWidth, windowHeight, backgroundColor, fontColor, font);
|
|
|
|
textRenderer.setLeftMargin(1);
|
|
|
|
textRenderer.setBottomMargin(1);
|
|
|
|
/*************************get Text and update back to shared meomory********************************************/
|
2019-11-20 12:50:32 +01:00
|
|
|
|
|
|
|
std::string command;
|
2019-11-20 15:51:01 +01:00
|
|
|
std::cout << "TextRender: ";
|
2019-11-19 13:27:18 +01:00
|
|
|
std::getline(std::cin, command);
|
|
|
|
while(!isQuit(command)) {
|
2019-11-20 15:51:01 +01:00
|
|
|
if(command.compare("clear")) {
|
|
|
|
vkvm::setText(command);
|
2019-11-19 13:27:18 +01:00
|
|
|
currentText = vkvm::getText();
|
|
|
|
textRenderer.update(currentText);
|
2019-11-20 15:51:01 +01:00
|
|
|
outPutPixel(windowHeight, windowWidth, fontColor);
|
|
|
|
std::cout << "TextRender: ";
|
|
|
|
std::getline(std::cin, command);
|
|
|
|
} else {
|
|
|
|
textRenderer.clear();
|
2019-10-15 16:12:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 13:27:18 +01:00
|
|
|
std::cout << "TextRender finished." << std::endl;
|
|
|
|
|
2019-10-15 14:00:06 +02:00
|
|
|
return 0;
|
2019-11-14 13:12:48 +01:00
|
|
|
}
|
2019-11-19 13:27:18 +01:00
|
|
|
|
2019-11-20 15:51:01 +01:00
|
|
|
/***************************read pixel in shared memory and test output in console******************************************/
|
|
|
|
void outPutPixel(int windowHeight, int windowWidth, vkvm::Color fontColor) {
|
|
|
|
for(int y = 0; y < windowHeight; y++) {
|
|
|
|
for(int x = 0; x < windowWidth; x++) {
|
|
|
|
if(vkvm::getPixel(x, y).getRed() == fontColor.getRed()) {
|
|
|
|
std::cout << "*";
|
|
|
|
} else {
|
|
|
|
std::cout << " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::cout << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 13:27:18 +01:00
|
|
|
|
|
|
|
// std::string str;
|
|
|
|
// std::cout << "string to draw: ";
|
|
|
|
// std::getline(std::cin, str);
|
|
|
|
//
|
|
|
|
// for (int i = 0; i < font.height(); i++) {
|
|
|
|
// for (char c : str) {
|
|
|
|
// for (int j = 0; j < font.width(); j++) {
|
|
|
|
// if (font.getPixel(c,j,i)) {
|
|
|
|
// std::cout << "█";
|
|
|
|
// } else {
|
|
|
|
// std::cout << " ";
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// std::cout << " ";
|
|
|
|
// }
|
|
|
|
// std::cout << std::endl;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// return 0;
|
|
|
|
|
|
|
|
bool isQuit(std::string command) {
|
|
|
|
return command.compare("quit") == 0;
|
|
|
|
}
|