mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-06-15 22:19:20 +02:00
- Shortkey for script editor (Alt+S) - highlighter: bold true/false , single line comments - Run scripts from the editor works - More icons from Maximillian, Thanks - Run on the fly checkbox, works if the script is running. - Load/save features
93 lines
No EOL
3.2 KiB
C++
93 lines
No EOL
3.2 KiB
C++
//
|
|
// ScriptHighlighting.cpp
|
|
// interface/src
|
|
//
|
|
// Created by Thijs Wenker on 4/15/14.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "ScriptHighlighting.h"
|
|
#include <QTextDocument>
|
|
|
|
ScriptHighlighting::ScriptHighlighting(QTextDocument* parent) :
|
|
QSyntaxHighlighter(parent)
|
|
{
|
|
keywordRegex = QRegExp("\\b(break|case|catch|continue|debugger|default|delete|do|else|finally|for|function|if|in|instanceof|new|return|switch|this|throw|try|typeof|var|void|while|with)\\b");
|
|
qoutedTextRegex = QRegExp("\".*\"");
|
|
multiLineCommentBegin = QRegExp("/\\*");
|
|
multiLineCommentEnd = QRegExp("\\*/");
|
|
numberRegex = QRegExp("[0-9]+(\\.[0-9]+){0,1}");
|
|
singleLineComment = QRegExp("//[^\n]*");
|
|
truefalseRegex = QRegExp("\\b(true|false)\\b");
|
|
}
|
|
|
|
void ScriptHighlighting::highlightBlock(const QString &text) {
|
|
this->highlightKeywords(text);
|
|
this->formatNumbers(text);
|
|
this->formatTrueFalse(text);
|
|
this->formatQoutedText(text);
|
|
this->formatComments(text);
|
|
}
|
|
|
|
void ScriptHighlighting::highlightKeywords(const QString &text) {
|
|
int index = keywordRegex.indexIn(text);
|
|
while (index >= 0) {
|
|
int length = keywordRegex.matchedLength();
|
|
setFormat(index, length, Qt::blue);
|
|
index = keywordRegex.indexIn(text, index + length);
|
|
}
|
|
}
|
|
|
|
void ScriptHighlighting::formatComments(const QString &text) {
|
|
|
|
setCurrentBlockState(BlockStateClean);
|
|
|
|
int start = (previousBlockState() != BlockStateInMultiComment) ? text.indexOf(multiLineCommentBegin) : 0;
|
|
|
|
while (start > -1) {
|
|
int end = text.indexOf(multiLineCommentEnd, start);
|
|
int length = (end == -1 ? text.length() : (end + multiLineCommentEnd.matchedLength())) - start;
|
|
setFormat(start, length, Qt::lightGray);
|
|
start = text.indexOf(multiLineCommentBegin, start + length);
|
|
if (end == -1) setCurrentBlockState(BlockStateInMultiComment);
|
|
}
|
|
|
|
int index = singleLineComment.indexIn(text);
|
|
while (index >= 0) {
|
|
int length = singleLineComment.matchedLength();
|
|
setFormat(index, length, Qt::lightGray);
|
|
index = singleLineComment.indexIn(text, index + length);
|
|
}
|
|
}
|
|
|
|
void ScriptHighlighting::formatQoutedText(const QString &text){
|
|
int index = qoutedTextRegex.indexIn(text);
|
|
while (index >= 0) {
|
|
int length = qoutedTextRegex.matchedLength();
|
|
setFormat(index, length, Qt::red);
|
|
index = qoutedTextRegex.indexIn(text, index + length);
|
|
}
|
|
}
|
|
|
|
void ScriptHighlighting::formatNumbers(const QString &text){
|
|
int index = numberRegex.indexIn(text);
|
|
while (index >= 0) {
|
|
int length = numberRegex.matchedLength();
|
|
setFormat(index, length, Qt::green);
|
|
index = numberRegex.indexIn(text, index + length);
|
|
}
|
|
}
|
|
|
|
void ScriptHighlighting::formatTrueFalse(const QString text){
|
|
int index = truefalseRegex.indexIn(text);
|
|
while (index >= 0) {
|
|
int length = truefalseRegex.matchedLength();
|
|
QFont* font = new QFont(this->document()->defaultFont());
|
|
font->setBold(true);
|
|
setFormat(index, length, *font);
|
|
index = truefalseRegex.indexIn(text, index + length);
|
|
}
|
|
} |