| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- /*
- Copyright (C) 2012 by Ivan Safrin
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #include "PolycodeTextEditor.h"
- PolycodeSyntaxHighlighter::PolycodeSyntaxHighlighter(String extension) {
- colorScheme[0] = Color(0.0, 0.0, 0.0, 1.0);
- colorScheme[1] = Color(0.0, 0.53, 0.0, 1.0);
- colorScheme[2] = Color(0.79, 0.0, 0.63, 1.0);
- colorScheme[3] = Color(126.0/255.0, 73.0/255.0, 42.0/255.0, 1.0);
- colorScheme[4] = Color(227.0/255.0, 11.0/255.0, 0.0/255.0, 1.0);
- colorScheme[5] = Color(39.0/255.0, 90.0/255.0, 94.0/255.0, 1.0);
- colorScheme[6] = Color(56.0/255.0, 0.0/255.0, 218.0/255.0, 1.0);
-
- // String separators = " ;()\t\n=+-/\\'\"";
- // String keywords = "true,false,";
-
- separators = String(" ; ( ) \t \n = + - / \\ ' \"").split(" ");
- separators.push_back(" ");
-
- keywords = String("true false class self break do end else elseif function if local nil not or repeat return then until while").split(" ");
- }
- PolycodeSyntaxHighlighter::~PolycodeSyntaxHighlighter() {
- }
- bool PolycodeSyntaxHighlighter::contains(String part, std::vector<String> list) {
- for(int i=0; i < list.size(); i++) {
- if(list[i] == part)
- return true;
- }
- return false;
- }
- std::vector<SyntaxHighlightToken> PolycodeSyntaxHighlighter::parseText(String text) {
- return parseLua(text);
- }
-
- std::vector<SyntaxHighlightToken> PolycodeSyntaxHighlighter::parseLua(String text) {
- std::vector<SyntaxHighlightToken> tokens;
-
- const int MODE_GENERAL = 0;
- const int MODE_COMMENT = 1;
- const int MODE_STRING = 2;
- const int MODE_METHOD = 3;
- const int MODE_KEYWORD = 4;
-
- int mode = MODE_GENERAL;
-
- bool isComment = false;
-
- String line = "";
-
- char lastSeparator = ' ';
-
- for(int i=0; i < text.length(); i++) {
- char ch = text[i];
- if(contains(String(ch), separators)) {
- unsigned int type = mode;
- unsigned int ch_type = mode;
-
- if(ch == '\"')
- ch_type = MODE_STRING;
-
- if(mode != MODE_STRING && ch == '(') {
- type = MODE_METHOD;
- }
- if(mode != MODE_STRING) {
- if(contains(line, keywords)) {
- type = MODE_KEYWORD;
- }
- }
-
- if(isComment) {
- type = MODE_COMMENT;
- ch_type = MODE_COMMENT;
- }
-
- if(line != "")
- tokens.push_back(SyntaxHighlightToken(line, type));
- tokens.push_back(SyntaxHighlightToken(String(ch), ch_type));
- if(ch == '-' && lastSeparator == '-' && mode != MODE_STRING) {
- isComment = true;
- tokens[tokens.size()-1].type = MODE_COMMENT;
- tokens[tokens.size()-2].type = MODE_COMMENT;
- }
-
- if(ch == '\n' )
- isComment = false;
-
- if(ch == '\"') {
- if(mode == MODE_STRING) {
- mode = MODE_GENERAL;
- } else {
- mode = MODE_STRING;
- }
- }
-
- line = "";
- lastSeparator = ch;
- } else {
- line += String(ch);
- }
- }
-
- for(int i=0; i < tokens.size(); i++) {
- switch(tokens[i].type) {
- case MODE_STRING:
- tokens[i].color = colorScheme[4];
- break;
- case MODE_COMMENT:
- tokens[i].color = colorScheme[1];
- break;
- case MODE_METHOD:
- tokens[i].color = colorScheme[3];
- break;
- case MODE_KEYWORD:
- tokens[i].color = colorScheme[2];
- break;
- default:
- tokens[i].color = colorScheme[0];
- break;
- }
- // printf("%s(%d)", tokens[i].text.c_str(), tokens[i].type);
- }
-
- return tokens;
- }
- PolycodeTextEditor::PolycodeTextEditor() : PolycodeEditor(true){
- }
- PolycodeTextEditor::~PolycodeTextEditor() {
- if(syntaxHighligher)
- delete syntaxHighligher;
- }
- bool PolycodeTextEditor::openFile(OSFileEntry filePath) {
-
- textInput = new UITextInput(true, 100, 100);
- addChild(textInput);
-
- syntaxHighligher = NULL;
-
- if(filePath.extension == "lua") {
- syntaxHighligher = new PolycodeSyntaxHighlighter(filePath.extension);
- textInput->setSyntaxHighlighter(syntaxHighligher);
- }
-
- Data *data = new Data();
- data->loadFromFile(filePath.fullPath);
- textInput->insertText(data->getAsString(String::ENCODING_UTF8));
- delete data;
-
- PolycodeEditor::openFile(filePath);
- return true;
- }
- void PolycodeTextEditor::saveFile() {
- Data *data = new Data();
- data->setFromString(textInput->getText(), String::ENCODING_UTF8);
- data->saveToFile(filePath);
- delete data;
- }
- void PolycodeTextEditor::Resize(int x, int y) {
- textInput->Resize(x,y);
- PolycodeEditor::Resize(x,y);
- }
|