40TextEditorTabView::TextEditorTabView(
EditorView* editorView,
const string& tabId,
GUIScreenNode* screenNode,
const string& extension)
45 engine = Engine::createOffScreenInstance(512, 512,
false,
false,
false);
49 auto multiLineTextNode = required_dynamic_cast<GUIStyledTextNode*>(screenNode->
getNodeById(
"text"));
52 auto code = multiLineTextNode->getText().getString();
59 auto inlineComment =
false;
63 auto attribute =
false;
64 for (
auto i = 0; i < code.size(); i++) {
66 auto nc = i + 1 < code.size()?code[i + 1]:
'\0';
67 auto nnc = i + 2 < code.size()?code[i + 2]:
'\0';
68 auto nnnc = i + 3 < code.size()?code[i + 3]:
'\0';
69 if (tag ==
false && inlineComment ==
false && quote ==
'\0') {
70 if (language.commentInlineStart.empty() ==
false &&
71 c == language.commentInlineStart[0] &&
72 nc == language.commentInlineStart[1] &&
73 nnc == language.commentInlineStart[2] &&
74 nnnc == language.commentInlineStart[3]) {
86 if (inlineComment ==
true) {
87 if (language.commentInlineEnd.empty() ==
false &&
88 llc == language.commentInlineEnd[0] &&
89 lc == language.commentInlineEnd[1] &&
90 c == language.commentInlineEnd[2]) {
91 inlineComment =
false;
94 startIdx = endIdx + 2;
102 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
literalColor);
108 if (quote ==
'\0' && language.quotes.find(c) != string::npos) {
110 if (startIdx != endIdx) {
118 if (lc ==
'/' && c ==
'>') {
120 if (startIdx != endIdx) {
123 multiLineTextNode->setTextStyle(endIdx, endIdx - 1 + 2,
keyword1Color);
131 if (startIdx != endIdx) {
134 multiLineTextNode->setTextStyle(endIdx, endIdx - 1 + 1,
keyword1Color);
140 if (language.delimiters.find(c) != string::npos) {
142 if (startIdx != endIdx) {
157 auto code = multiLineTextNode->getText().getString();
158 auto commentCount = 0;
159 auto delimiterCount = 0;
160 auto nonWhitespaceCount = 0;
163 auto commentLine =
false;
164 for (
auto i = 0; i < code.size(); i++) {
168 if (commentLine ==
true) {
169 if (startIdx != -1 && endIdx != -1 && startIdx != endIdx) {
173 if (startIdx != -1 && endIdx != -1 && startIdx != endIdx) {
174 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
literalColor);
178 nonWhitespaceCount = 0;
183 if (language.whitespaces.find(c) != string::npos) {
186 if (c == language.comment && nonWhitespaceCount == 0) {
190 nonWhitespaceCount++;
192 if (c == language.delimiter && nonWhitespaceCount > 0) {
194 if (startIdx != -1 && startIdx != endIdx) {
195 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
keyword2Color);
199 nonWhitespaceCount++;
201 if (nonWhitespaceCount == 0) startIdx = i;
202 nonWhitespaceCount++;
205 endIdx = code.size();
206 if (commentLine ==
true) {
209 if (startIdx != -1 && startIdx != endIdx) {
210 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
literalColor);
214 if (std::find(language.extensions.begin(), language.extensions.end(), extension) != language.extensions.end()) {
215 auto code = multiLineTextNode->getText().getString();
216 auto keywords1 = StringTools::tokenize(language.keywords1,
" ");
217 auto keywords2 = StringTools::tokenize(language.keywords2,
" ");
218 auto preprocessorLineKeywords = StringTools::tokenize(language.preprocessorLineKeywords,
" ");
219 auto datatypeLiteralSuffixes = StringTools::tokenize(language.datatypeLiteralSuffixes,
" ");
225 auto inlineComment =
false;
226 auto lineComment =
false;
227 auto preprocessorLine =
false;
229 for (
auto i = 0; i < code.size(); i++) {
231 auto nc = i + 1 < code.size()?code[i + 1]:
'\0';
232 if (inlineComment ==
false && lineComment ==
false && preprocessorLine ==
false && quote ==
'\0') {
233 if (language.commentLine.empty() ==
false && (language.commentLine.size() == 1 || c == language.commentLine[0]) && nc == language.commentLine[language.commentLine.size() - 1]) {
238 if (language.commentInlineStart.empty() ==
false && (language.commentInlineStart.size() == 1 || c == language.commentInlineStart[0]) && nc == language.commentInlineStart[language.commentInlineStart.size() - 1]) {
239 inlineComment =
true;
243 if (quote ==
'\0' && language.keywordQuotes.find(c) != string::npos) {
249 if (language.keywordDelimiters.find(c) != string::npos) {
252 if (i == code.size() - 1) {
253 endIdx = code.size();
255 if (startIdx != -1 && endIdx != -1 && startIdx != endIdx) {
256 while (code[startIdx] ==
' ' || code[startIdx] ==
'\t') startIdx++;
257 auto word = StringTools::trim(StringTools::substring(code, startIdx, endIdx));
258 if (word.empty() ==
true)
continue;
259 auto literalWord = word;
260 for (
auto& datatypeLiteralSuffix: datatypeLiteralSuffixes) {
261 if (StringTools::endsWith(word, datatypeLiteralSuffix) ==
true) {
264 for (
auto j = 0; j < word.size() - datatypeLiteralSuffix.size(); j++) {
265 if (word[j] ==
'.') {
272 if (isdigit(word[j]) ==
false) {
278 literalWord = StringTools::substring(word, 0, word.size() - datatypeLiteralSuffix.size());
283 if (Integer::is(literalWord) ==
true || Float::is(literalWord) ==
true) {
284 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
literalColor);
286 for (
auto& keyword: keywords1) {
287 if (word == keyword) {
288 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
keyword1Color);
292 for (
auto& keyword: keywords2) {
293 if (word == keyword) {
294 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
keyword2Color);
298 for (
auto& keyword: preprocessorLineKeywords) {
299 if (word == keyword) {
300 if (c ==
'\n' || i == code.size() - 1) {
303 preprocessorLine =
true;
304 endIdx = startIdx - 1;
310 startIdx = endIdx + 1;
315 if (lineComment ==
true) {
316 if (c ==
'\n' || i == code.size() - 1) {
320 startIdx = endIdx + 1;
324 if (inlineComment ==
true) {
325 if (language.commentInlineEnd.empty() ==
false && (language.commentInlineEnd.size() == 1 || lc == language.commentInlineEnd[0]) && c == language.commentInlineEnd[language.commentInlineEnd.size() - 1]) {
326 inlineComment =
false;
329 startIdx = endIdx + 1;
333 if (preprocessorLine ==
true) {
334 if (c ==
'\n' || i == code.size() - 1) {
335 preprocessorLine =
false;
338 startIdx = endIdx + 1;
343 if (c == quote && (lc !=
'\\' || llc ==
'\\')) {
344 quote =
'\0';endIdx = -1;
346 multiLineTextNode->setTextStyle(startIdx, endIdx - 1,
literalColor);
347 startIdx = endIdx + 1;
384 Console::print(
string(
"TextEditorTabView::initialize(): An error occurred: "));
385 Console::println(
string(exception.what()));
void display()
Renders the scene.
void dispose()
Shutdown the engine.
void setSceneColor(const Color4 &sceneColor)
Set scene color.
void handleEvents()
Handle screen events.
void render()
Render GUIs.
void addRenderScreen(const string &screenId)
Add render screen.
void addScreen(const string &id, GUIScreenNode *screen)
Add screen.
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
Text editor tab controller.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void initialize(GUIScreenNode *screenNode) override
Init.
void setOutlinerContent()
Set outliner content.
GUIColor preprocessorColor
TextEditorTabController * textEditorTabController
GUIColor commentLineColor
void dispose() override
Disposes the view.
void display() override
Renders the view.
void reloadOutliner() override
Reload outliner.
struct tdme::tools::editor::tabviews::TextEditorTabView::XMLLanguage xmlLanguage
void initialize() override
Initiates the view.
void deactivate() override
Deactivate.
Engine * getEngine() override
struct tdme::tools::editor::tabviews::TextEditorTabView::PropertiesLanguage propertiesLanguage
void handleInputEvents() override
Handle input events that have not yet been processed.
TabView::OutlinerState outlinerState
void activate() override
Activate.
~TextEditorTabView()
Destructor.
GUIColor commentInlineColor
void updateRendering() override
Update rendering.
vector< Language > languages
std::exception Exception
Exception base class.
vector< string > extensions
vector< string > extensions