WingHexExplorer2/src/class/wingangelapi.cpp

2356 lines
83 KiB
C++

/*==============================================================================
** Copyright (C) 2024-2027 WingSummer
**
** This program is free software: you can redistribute it and/or modify it under
** the terms of the GNU Affero General Public License as published by the Free
** Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
** FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
** details.
**
** You should have received a copy of the GNU Affero General Public License
** along with this program. If not, see <https://www.gnu.org/licenses/>.
** =============================================================================
*/
#include "wingangelapi.h"
#include "AngelScript/sdk/angelscript/include/angelscript.h"
#include "WingPlugin/iwingangel.h"
#include "class/angelscripthelper.h"
#include "class/logger.h"
#include "class/scriptmachine.h"
#include "class/wingfiledialog.h"
#include "class/winginputdialog.h"
#include "define.h"
#include "scriptaddon/scriptqdictionary.h"
#include <QApplication>
#include <QJsonDocument>
#include <QMessageBox>
#include <QTemporaryFile>
#include <QThread>
#ifdef Q_OS_WIN
#undef MessageBox
#endif
WingAngelAPI::WingAngelAPI() {
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
qRegisterMetaType<QVector<QVariant>>();
#endif
}
WingAngelAPI::~WingAngelAPI() {}
bool WingAngelAPI::init(const std::unique_ptr<QSettings> &set) {
Q_UNUSED(set);
return true;
}
void WingAngelAPI::unload(std::unique_ptr<QSettings> &set) {
Q_UNUSED(set);
this->disconnect();
}
const QString WingAngelAPI::pluginName() const {
return tr("AngelScriptService");
}
const QString WingAngelAPI::pluginComment() const {
return tr("A internal plugin that provides AngelScript scripts with the "
"ability to call the host API.");
}
QString WingAngelAPI::retranslate(const QString &str) {
return QApplication::tr(str.toLatin1());
}
void WingAngelAPI::onRegisterScriptObj(WingHex::IWingAngel *o) {
o->registerScriptMarcos({"EXEC_BASE", "AS_ARRAY_EXT", "AS_DICTIONARY_EXT"});
}
WingHex::IWingPlugin::RegisteredEvents WingAngelAPI::registeredEvents() const {
RegisteredEvents evs;
evs.setFlag(RegisteredEvent::PluginFileOpened);
evs.setFlag(RegisteredEvent::PluginFileClosed);
return evs;
}
void WingAngelAPI::eventPluginFile(PluginFileEvent e, FileType type,
const QString &newfileName, int handle,
const QString &oldfileName) {
Q_UNUSED(type);
Q_UNUSED(newfileName);
Q_UNUSED(oldfileName);
if (e == PluginFileEvent::PluginOpened) {
_handles.append(handle);
} else if (e == PluginFileEvent::PluginClosed) {
_handles.removeOne(handle);
}
}
void WingAngelAPI::installAPI(ScriptMachine *machine) {
Q_ASSERT(machine);
auto engine = machine->engine();
installBasicTypes(engine);
installExtAPI(engine);
installLogAPI(engine);
installMsgboxAPI(engine);
installInputboxAPI(engine);
installFileDialogAPI(engine);
installColorDialogAPI(engine);
installHexReaderAPI(engine);
installHexControllerAPI(engine);
// plugin script objects will be install later
}
void WingAngelAPI::installBasicTypes(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("msgbox");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAngelType<QMessageBox::StandardButtons>(engine, "buttons");
registerAngelType<QMessageBox::Icon>(engine, "icon");
r = engine->SetDefaultNamespace("inputbox");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAngelType<QLineEdit::EchoMode>(engine, "EchoMode");
registerAngelType<Qt::InputMethodHints>(engine, "InputMethodHints");
r = engine->SetDefaultNamespace("filedlg");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAngelType<QFileDialog::Options>(engine, "options");
engine->SetDefaultNamespace("");
// QModelIndex
r = engine->RegisterObjectType("ModelIndex", sizeof(QModelIndex),
asOBJ_VALUE | asOBJ_POD |
asGetTypeTraits<QModelIndex>());
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "ModelIndex parent() const",
asMETHOD(QModelIndex, parent),
asCALL_THISCALL);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "int row() const",
asMETHOD(QModelIndex, row),
asCALL_THISCALL);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "int column() const",
asMETHOD(QModelIndex, column),
asCALL_THISCALL);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
// extension function for data, we dont want to register QVariant to it
r = engine->RegisterObjectMethod("ModelIndex", "string dataString() const",
asFUNCTION(QModelIndex_dataString),
asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "char dataChar() const",
asFUNCTION(QModelIndex_dataChar),
asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "uint dataUInt() const",
asFUNCTION(QModelIndex_dataUInt),
asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "int dataInt() const",
asFUNCTION(QModelIndex_dataInt),
asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "int64 dataLongLong() const",
asFUNCTION(QModelIndex_dataLongLong),
asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod(
"ModelIndex", "uint64 dataULongLong() const",
asFUNCTION(QModelIndex_dataULongLong), asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "float dataFloat() const",
asFUNCTION(QModelIndex_dataFloat),
asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("ModelIndex", "double dataDouble() const",
asFUNCTION(QModelIndex_dataDouble),
asCALL_CDECL_OBJFIRST);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
installHexBaseType(engine);
}
void WingAngelAPI::installLogAPI(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("log");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAPI(
engine,
asMETHODPR(WingAngelAPI, logInfo, (const QString &) const, void),
"void info(const string &in message)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, logTrace, (const QString &) const, void),
"void trace(const string &in message)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, logDebug, (const QString &) const, void),
"void debug(const string &in message)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, logWarn, (const QString &) const, void),
"void warn(const string &in message)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, logError, (const QString &) const, void),
"void error(const string &in message)");
engine->SetDefaultNamespace("");
}
void WingAngelAPI::installExtAPI(asIScriptEngine *engine) {
// toast(message, iconPath)
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _UI_Toast, (const QString &, const QString &),
void),
"void toast(const string &in message, const string &in icon =\"\")");
}
void WingAngelAPI::installMsgboxAPI(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("msgbox");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAPI(engine,
asMETHODPR(WingAngelAPI, _MSG_AboutQt, (const QString &), void),
"void aboutQt(const string &in title =\"\")");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _MSG_Information,
(const QString &, const QString &,
QMessageBox::StandardButtons, QMessageBox::StandardButton),
QMessageBox::StandardButton),
"void information(const string &in title, const string &in text, "
"msgbox::buttons buttons = msgbox::buttons::Ok, "
"msgbox::buttons defaultButton = msgbox::buttons::NoButton)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _MSG_Question,
(const QString &, const QString &,
QMessageBox::StandardButtons, QMessageBox::StandardButton),
QMessageBox::StandardButton),
"void question(const string &in title, const string &in text, "
"msgbox::buttons buttons = msgbox::buttons::Yes | "
"msgbox::buttons::No, "
"msgbox::buttons defaultButton = msgbox::buttons::NoButton)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _MSG_Warning,
(const QString &, const QString &,
QMessageBox::StandardButtons, QMessageBox::StandardButton),
QMessageBox::StandardButton),
"void warning(const string &in title, const string &in text, "
"msgbox::buttons buttons = msgbox::buttons::Ok, "
"msgbox::buttons defaultButton = msgbox::buttons::NoButton)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _MSG_Critical,
(const QString &, const QString &,
QMessageBox::StandardButtons, QMessageBox::StandardButton),
QMessageBox::StandardButton),
"void critical(const string &in title, const string &in text, "
"msgbox::buttons buttons = msgbox::buttons::Ok, "
"msgbox::buttons defaultButton = msgbox::buttons::NoButton)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _MSG_msgbox,
(QMessageBox::Icon, const QString &, const QString &,
QMessageBox::StandardButtons, QMessageBox::StandardButton),
QMessageBox::StandardButton),
"void msgbox(msgbox::icon icon, const string &in title, "
"const string &in text, "
"msgbox::buttons buttons = msgbox::buttons::NoButton, "
"msgbox::buttons defaultButton = msgbox::buttons::NoButton)");
registerAPI(engine,
asMETHODPR(WingAngelAPI, _MSG_About,
(const QString &, const QString &), void),
"void about(const string &in title, const string &in text)");
engine->SetDefaultNamespace("");
}
void WingAngelAPI::installInputboxAPI(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("inputbox");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _InputBox_GetText,
(const QString &, const QString &, QLineEdit::EchoMode,
const QString &, bool *, Qt::InputMethodHints),
QString),
"string getText(const string &in title, const string &in label, "
"inputbox::EchoMode echo = inputbox::Normal, "
"const string &in text = \"\", bool &out ok = false, "
"inputbox::InputMethodHints inputMethodHints = inputbox::ImhNone)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _InputBox_GetMultiLineText,
(const QString &, const QString &, const QString &, bool *,
Qt::InputMethodHints inputMethodHints),
QString),
"string getMultiLineText(const string &in title, "
"const string &in label, "
"const string &in text = \"\", bool &out ok = false, "
"inputbox::InputMethodHints inputMethodHints = inputbox::ImhNone)");
registerAPI(engine,
asMETHODPR(WingAngelAPI, _InputBox_GetInt,
(const QString &, const QString &, int, int, int,
int, bool *),
int),
"int getInt(const string &in title, const string &in label, "
"int &in value = 0, int &in minValue = -2147483647, "
"int &in maxValue = 2147483647, "
"int &in step = 1, bool &out ok = false)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _InputBox_GetDouble,
(const QString &, const QString &, double, double, double,
int, bool *, double),
double),
"double getDouble(const string &in title, const string &in label, "
"double &in value = 0, double &in minValue = -2147483647, "
"double &in maxValue = 2147483647, int &in decimals = 1, "
"bool &out ok = false, double &in step = 1)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _InputBox_getItem,
(const QString &, const QString &, const CScriptArray &, int,
bool, bool *, Qt::InputMethodHints),
QString),
"string getItem(const string &in title, const string &in label, "
"const string[] &in items, int current = 0, "
"bool editable = true, bool &out ok = false, "
"inputbox::InputMethodHints inputMethodHints = inputbox::ImhNone)");
engine->SetDefaultNamespace("");
}
void WingAngelAPI::installFileDialogAPI(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("filedlg");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _FileDialog_GetExistingDirectory,
(const QString &, const QString &, QFileDialog::Options),
QString),
"string getExistingDirectory(const string &in caption = \"\", "
"const string &in dir = \"\", "
"filedlg::options &in options = filedlg::options::ShowDirsOnly)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _FileDialog_GetOpenFileName,
(const QString &, const QString &, const QString &,
QString *, QFileDialog::Options),
QString),
"string getOpenFileName(const string &in caption = \"\", "
"const string &in dir = \"\", const string &in filter = \"\", "
"string &out selectedFilter = \"\", filedlg::options &in options = 0)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _FileDialog_GetSaveFileName,
(const QString &, const QString &, const QString &,
QString *, QFileDialog::Options),
QString),
"string getSaveFileName(const string &in caption = \"\", "
"const string &in dir = \"\", const string &in filter = \"\", "
"string &out selectedFilter = \"\", filedlg::options &in options = 0)");
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _FileDialog_getOpenFileNames,
(const QString &, const QString &, const QString &,
QString *, QFileDialog::Options),
CScriptArray *),
"string[]@ getOpenFileNames(const string &in caption = \"\", "
"const string &in dir = \"\", const string &in filter = \"\", "
"string &out selectedFilter = \"\", filedlg::options &in options = 0)");
engine->SetDefaultNamespace("");
}
void WingAngelAPI::installColorDialogAPI(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("colordlg");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAPI(engine,
asMETHODPR(WingAngelAPI, _Color_get, (const QString &), QColor),
"color getColor(const string &in caption)");
engine->SetDefaultNamespace("");
}
void WingAngelAPI::installHexBaseType(asIScriptEngine *engine) {
registerAngelType<WingHex::ErrFile>(engine, "ErrFile");
registerAngelType<WingHex::SelectionMode>(engine, "SelectionMode");
int r = engine->RegisterTypedef("byte", "uint8");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
// HexPosition
r = engine->RegisterObjectType("HexPosition", sizeof(WingHex::HexPosition),
asOBJ_VALUE | asOBJ_POD |
asGetTypeTraits<WingHex::HexPosition>());
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectProperty("HexPosition", QSIZETYPE_WRAP("line"),
asOFFSET(WingHex::HexPosition, line));
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectProperty("HexPosition", "int column",
asOFFSET(WingHex::HexPosition, column));
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectProperty(
"HexPosition", "uint8 lineWidth",
asOFFSET(WingHex::HexPosition, lineWidth));
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectProperty(
"HexPosition", "int nibbleindex",
asOFFSET(WingHex::HexPosition, nibbleindex));
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod("HexPosition", QSIZETYPE_WRAP("offset()"),
asMETHOD(WingHex::HexPosition, offset),
asCALL_THISCALL);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod(
"HexPosition", "int opSub(const HexPosition &in) const",
asMETHODPR(WingHex::HexPosition, operator-,
(const WingHex::HexPosition &) const, qsizetype),
asCALL_THISCALL);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
r = engine->RegisterObjectMethod(
"HexPosition", "bool opEquals(const HexPosition &in) const",
asMETHODPR(WingHex::HexPosition, operator==,
(const WingHex::HexPosition &) const, bool),
asCALL_THISCALL);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
}
void WingAngelAPI::installHexReaderAPI(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("reader");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, isCurrentDocEditing,
(void) const, bool),
"bool isCurrentDocEditing()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, currentDocFilename,
(void) const, QString),
"string currentDocFilename()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, isInsertionMode, (void) const, bool),
"bool isInsertionMode()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, isReadOnly, (void) const, bool),
"bool isReadOnly()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, isKeepSize, (void) const, bool),
"bool isKeepSize()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, isLocked, (void) const, bool),
"bool isLocked()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, currentPos, (void) const,
WingHex::HexPosition),
"HexPosition currentPos()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, stringVisible, (void) const, bool),
"bool stringVisible()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, addressVisible, (void) const, bool),
"bool addressVisible()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, headerVisible, (void) const, bool),
"bool headerVisible()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, isModified, (void) const, bool),
"bool isModified()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, documentLines, (void) const,
qsizetype),
QSIZETYPE_WRAP("documentLines()"));
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, documentBytes, (void) const,
qsizetype),
QSIZETYPE_WRAP("documentBytes()"));
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, currentRow, (void) const, qsizetype),
QSIZETYPE_WRAP("currentRow()"));
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, currentColumn, (void) const,
qsizetype),
QSIZETYPE_WRAP("currentColumn()"));
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, currentOffset, (void) const,
qsizetype),
QSIZETYPE_WRAP("currentOffset()"));
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, selectedLength, (void) const,
qsizetype),
QSIZETYPE_WRAP("selectedLength()"));
registerAPI(engine,
asMETHODPR(WingAngelAPI, _HexReader_selectedBytes, (qsizetype),
CScriptArray *),
"byte[]@ selectedBytes(" QSIZETYPE " index)");
registerAPI(engine,
asMETHODPR(WingAngelAPI, _HexReader_selectionBytes, (void),
CScriptArray *),
"byte[][]@ selectionBytes()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, selectionStart,
(qsizetype) const, WingHex::HexPosition),
"HexPosition selectionStart(" QSIZETYPE " index)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, selectionEnd,
(qsizetype) const, WingHex::HexPosition),
"HexPosition selectionEnd(" QSIZETYPE " index)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, selectionLength,
(qsizetype) const, qsizetype),
QSIZETYPE_WRAP("selectionLength(" QSIZETYPE " index)"));
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, selectionCount, () const, qsizetype),
QSIZETYPE_WRAP("selectionCount()"));
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, addressBase, (void) const, quintptr),
QPTR_WRAP("addressBase()"));
registerAPI(engine,
asMETHODPR(WingAngelAPI, _HexReader_readBytes,
(qsizetype, qsizetype), CScriptArray *),
"byte[]@ readBytes(" QSIZETYPE " offset," QSIZETYPE " len)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, readInt8, (qsizetype) const, qint8),
"int8 readInt8(" QSIZETYPE " offset)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, readUInt8, (qsizetype) const, quint8),
"uint8 readUInt8(" QSIZETYPE " offset)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, readInt16, (qsizetype) const, qint16),
"int16 readInt16(" QSIZETYPE " offset)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, readUInt16, (qsizetype) const,
quint16),
"uint16 readUInt16(" QSIZETYPE " offset)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, readInt32, (qsizetype) const, qint32),
"int readInt32(" QSIZETYPE " offset)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, readUInt32, (qsizetype) const,
quint32),
"uint readUInt32(" QSIZETYPE " offset)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, readInt64, (qsizetype) const, qint64),
"int64 readInt64(" QSIZETYPE " offset)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, readUInt64, (qsizetype) const,
quint64),
"uint64 readUInt64(" QSIZETYPE " offset)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, readFloat, (qsizetype) const, float),
"float readFloat(" QSIZETYPE " offset)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, readDouble, (qsizetype) const, double),
"double readDouble(" QSIZETYPE " offset)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, readString,
(qsizetype, const QString &) const, QString),
"string readString(" QSIZETYPE
" offset, string &in encoding = \"\")");
registerAPI(engine,
asMETHODPR(WingAngelAPI, _HexReader_findNext,
(qsizetype, const CScriptArray &), qsizetype),
QSIZETYPE_WRAP("findNext(" QSIZETYPE " begin, byte[] &in ba)"));
registerAPI(
engine,
asMETHODPR(WingAngelAPI, _HexReader_findPrevious,
(qsizetype, const CScriptArray &), qsizetype),
QSIZETYPE_WRAP("findPrevious(" QSIZETYPE " begin, byte[] &in ba)"));
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, bookMarkComment,
(qsizetype) const, QString),
"string bookMarkComment(" QSIZETYPE " pos)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, existBookMark,
(qsizetype) const, bool),
"bool existBookMark(" QSIZETYPE " pos)");
engine->SetDefaultNamespace("");
}
void WingAngelAPI::installHexControllerAPI(asIScriptEngine *engine) {
int r = engine->SetDefaultNamespace("ctl");
Q_ASSERT(r >= 0);
Q_UNUSED(r);
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, switchDocument, (int), bool),
"bool switchDocument(int handle)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, setLockedFile, (bool), bool),
"bool setLockedFile(bool b)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, setKeepSize, (bool), bool),
"bool setKeepSize(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setStringVisible, (bool), bool),
"bool setStringVisible(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setAddressVisible, (bool), bool),
"bool setAddressVisible(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setHeaderVisible, (bool), bool),
"bool setHeaderVisible(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setAddressBase, (quintptr), bool),
"bool setAddressBase(" QPTR " base)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, beginMarco, (const QString &), bool),
"bool beginMarco(string &in name = \"\")");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, endMarco, (void), bool),
"bool endMarco()");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, writeInt8, (qsizetype, qint8), bool),
"bool writeInt8(" QSIZETYPE " offset, int8 value)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, writeUInt8, (qsizetype, quint8), bool),
"bool writeUInt8(" QSIZETYPE " offset, uint8 value)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, writeInt16, (qsizetype, qint16), bool),
"bool writeInt16(" QSIZETYPE " offset, int16 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, writeUInt16,
(qsizetype, quint16), bool),
"bool writeUInt16(" QSIZETYPE " offset, uint16 value)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, writeInt32, (qsizetype, qint32), bool),
"bool writeInt32(" QSIZETYPE " offset, int value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, writeUInt32,
(qsizetype, quint32), bool),
"bool writeUInt32(" QSIZETYPE " offset, uint value)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, writeInt64, (qsizetype, qint64), bool),
"bool writeInt64(" QSIZETYPE " offset, int64 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, writeUInt64,
(qsizetype, quint64), bool),
"bool writeUInt64(" QSIZETYPE " offset, uint64 value)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, writeFloat, (qsizetype, float), bool),
"bool writeFloat(" QSIZETYPE " offset, float value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, writeDouble,
(qsizetype, double), bool),
"bool writeDouble(" QSIZETYPE " offset, double value)");
registerAPI(engine,
asMETHODPR(WingAngelAPI, _HexController_writeBytes,
(qsizetype, const CScriptArray &), bool),
"bool writeBytes(" QSIZETYPE " offset, byte[] &in data)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, writeString,
(qsizetype, const QString &, const QString &), bool),
"bool writeString(" QSIZETYPE " offset, string &in value, "
"string &in encoding = \"\")");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, insertInt8, (qsizetype, qint8), bool),
"bool insertInt8(" QSIZETYPE " offset, int8 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertUInt8,
(qsizetype, quint8), bool),
"bool insertUInt8(" QSIZETYPE " offset, uint8 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertInt16,
(qsizetype, qint16), bool),
"bool insertInt16(" QSIZETYPE " offset, int16 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertUInt16,
(qsizetype, quint16), bool),
"bool insertUInt16(" QSIZETYPE " offset, uint16 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertInt32,
(qsizetype, qint32), bool),
"bool insertInt32(" QSIZETYPE " offset, int value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertUInt32,
(qsizetype, quint32), bool),
"bool insertUInt32(" QSIZETYPE " offset, uint value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertInt64,
(qsizetype, qint64), bool),
"bool insertInt64(" QSIZETYPE " offset, int64 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertUInt64,
(qsizetype, quint64), bool),
"bool insertUInt64(" QSIZETYPE " offset, uint64 value)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, insertFloat, (qsizetype, float), bool),
"bool insertFloat(" QSIZETYPE " offset, float value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertDouble,
(qsizetype, double), bool),
"bool insertDouble(" QSIZETYPE " offset, double value)");
registerAPI(engine,
asMETHODPR(WingAngelAPI, _HexController_insertBytes,
(qsizetype, const CScriptArray &), bool),
"bool insertBytes(" QSIZETYPE " offset, byte[] &in data)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, insertString,
(qsizetype, const QString &, const QString &), bool),
"bool insertString(" QSIZETYPE " offset, string &in value, "
"string &in encoding = \"\")");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendInt8, (qint8), bool),
"bool appendInt8(int8 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendUInt8, (quint8), bool),
"bool appendUInt8(uint8 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendInt16, (qint16), bool),
"bool appendInt16(int16 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendUInt16, (quint16), bool),
"bool appendUInt16(uint16 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendInt32, (qint32), bool),
"bool appendInt32(int value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendUInt32, (quint32), bool),
"bool appendUInt32(uint value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendInt64, (qint64), bool),
"bool appendInt64(int64 value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendUInt64, (quint64), bool),
"bool appendUInt64(uint value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendFloat, (float), bool),
"bool appendFloat(float value)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, appendDouble, (double), bool),
"bool appendDouble(double value)");
registerAPI(engine,
asMETHODPR(WingAngelAPI, _HexController_appendBytes,
(const CScriptArray &), bool),
"bool appendBytes(byte[] &in data)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, appendString,
(const QString &, const QString &), bool),
"bool appendString(string &in value, string &in encoding = \"\")");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, removeBytes,
(qsizetype, qsizetype), bool),
"bool removeBytes(" QSIZETYPE " offset, " QSIZETYPE " len)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, moveTo,
(qsizetype, qsizetype, int, bool), bool),
"bool moveTo(" QSIZETYPE " line, " QSIZETYPE
" column, int nibbleindex = -1, bool clearSelection = true)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, moveTo, (qsizetype, bool), bool),
"bool moveTo(" QSIZETYPE " offset, bool clearSelection = true)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, select,
(qsizetype, qsizetype, WingHex::SelectionMode),
bool),
"bool select(" QSIZETYPE " offset, " QSIZETYPE
" len, SelectionMode mode = SelectionMode::Add)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setInsertionMode, (bool), bool),
"bool setInsertionMode(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, metadata,
(qsizetype, qsizetype, const QColor &, const QColor &,
const QString &),
bool),
"bool metadata(" QSIZETYPE " begin, " QSIZETYPE
" length, color &in fgcolor, color &in bgcolor, string &in comment)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, removeMetadata, (qsizetype), bool),
"bool removeMetadata(" QSIZETYPE " offset)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, clearMetadata, (), bool),
"bool clearMetadata()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, foreground,
(qsizetype, qsizetype, const QColor &), bool),
"bool foreground(" QSIZETYPE " begin, " QSIZETYPE
" length, color &in fgcolor)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, background,
(qsizetype, qsizetype, const QColor &), bool),
"bool background(" QSIZETYPE " begin, " QSIZETYPE
" length, color &in bgcolor)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, comment,
(qsizetype, qsizetype, const QString &), bool),
"bool comment(" QSIZETYPE " begin, " QSIZETYPE
" length, string &in comment)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, setMetaVisible, (bool), bool),
"bool setMetaVisible(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setMetafgVisible, (bool), bool),
"bool setMetafgVisible(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setMetabgVisible, (bool), bool),
"bool setMetabgVisible(bool b)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, setMetaCommentVisible, (bool), bool),
"bool setMetaCommentVisible(bool b)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, newFile, (), WingHex::ErrFile),
"ErrFile newFile()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, openFile, (const QString &),
WingHex::ErrFile),
"ErrFile openFile(string &in filename)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, openExtFile,
(const QString &, const QString &),
WingHex::ErrFile),
"ErrFile openExtFile(string &in ext, string &in file)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, closeFile, (int, bool),
WingHex::ErrFile),
"ErrFile closeFile(int handle, bool force = false)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, closeHandle, (int), WingHex::ErrFile),
"ErrFile closeHandle(int handle)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, saveFile, (int), WingHex::ErrFile),
"ErrFile saveFile(int handle)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, exportFile,
(int, const QString &), WingHex::ErrFile),
"ErrFile exportFile(int handle, string &in savename)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, saveAsFile,
(int, const QString &), WingHex::ErrFile),
"ErrFile saveAsFile(int handle, string &in savename)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, openCurrent, (), WingHex::ErrFile),
"ErrFile openCurrent()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, closeCurrent, (bool),
WingHex::ErrFile),
"ErrFile closeCurrent(bool force = false)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, saveCurrent, (), WingHex::ErrFile),
"ErrFile saveCurrent()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, saveAsCurrent,
(const QString &), WingHex::ErrFile),
"ErrFile saveAsCurrent(string &in savename)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, exportCurrent,
(const QString &), WingHex::ErrFile),
"ErrFile exportCurrent(string &in savename)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, addBookMark,
(qsizetype, const QString &), bool),
"bool addBookMark(" QSIZETYPE " pos, string &in comment)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, modBookMark,
(qsizetype, const QString &), bool),
"bool modBookMark(" QSIZETYPE " pos, string &in comment)");
registerAPI(
engine,
asMETHODPR(WingHex::IWingPlugin, removeBookMark, (qsizetype), bool),
"bool removeBookMark(" QSIZETYPE " pos)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, clearBookMark, (), bool),
"bool clearBookMark()");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, openWorkSpace,
(const QString &), WingHex::ErrFile),
"ErrFile openWorkSpace(string &in filename)");
registerAPI(engine,
asMETHODPR(WingHex::IWingPlugin, closeAllFiles, (), bool),
"bool closeAll()");
engine->SetDefaultNamespace("");
}
void WingAngelAPI::registerAPI(asIScriptEngine *engine, const asSFuncPtr &fn,
const char *sig) {
auto r =
engine->RegisterGlobalFunction(sig, fn, asCALL_THISCALL_ASGLOBAL, this);
Q_ASSERT(r >= 0);
Q_UNUSED(r);
}
QStringList WingAngelAPI::cArray2QStringList(const CScriptArray &array,
int stringID, bool *ok) {
bool b = array.GetElementTypeId() == stringID;
if (ok) {
*ok = b;
}
if (!b) {
return {};
}
QStringList buffer;
buffer.reserve(array.GetSize());
array.AddRef();
for (asUINT i = 0; i < array.GetSize(); ++i) {
auto item = reinterpret_cast<const QString *>(array.At(i));
buffer.append(*item);
}
array.Release();
return buffer;
}
QByteArray WingAngelAPI::cArray2ByteArray(const CScriptArray &array, int byteID,
bool *ok) {
bool b = array.GetElementTypeId() == byteID;
if (ok) {
*ok = b;
}
if (!b) {
return {};
}
auto len = array.GetSize();
QByteArray buffer;
buffer.resize(len);
array.AddRef();
std::memcpy(buffer.data(), const_cast<CScriptArray &>(array).GetBuffer(),
len);
array.Release();
return buffer;
}
qsizetype WingAngelAPI::getAsTypeSize(int typeId, void *data) {
if (typeId == asTYPEID_VOID)
return false;
else if (typeId == asTYPEID_BOOL)
return 1;
else if (typeId == asTYPEID_INT8)
return sizeof(qint8);
else if (typeId == asTYPEID_INT16)
return sizeof(qint16);
else if (typeId == asTYPEID_INT32)
return sizeof(qint32);
else if (typeId == asTYPEID_INT64)
return sizeof(qint64);
else if (typeId == asTYPEID_UINT8)
return sizeof(quint8);
else if (typeId == asTYPEID_UINT16)
return sizeof(quint16);
else if (typeId == asTYPEID_UINT32)
return sizeof(quint32);
else if (typeId == asTYPEID_UINT64)
return sizeof(quint64);
else if (typeId == asTYPEID_FLOAT)
return sizeof(float);
else if (typeId == asTYPEID_DOUBLE)
return sizeof(double);
else {
typeId &= ~asTYPEID_OBJHANDLE;
asIScriptContext *ctx = asGetActiveContext();
auto engine = ctx->GetEngine();
asITypeInfo *type = engine->GetTypeInfoByName("string");
if (type->GetTypeId() == typeId) {
return reinterpret_cast<QString *>(data)->length() + 1;
}
}
return -1;
}
void WingAngelAPI::qvariantCastOp(
asIScriptEngine *engine, const QVariant &var,
const std::function<void(void *, QMetaType::Type)> &fn) {
static asQWORD buffer;
buffer = 0;
auto dicop = [](asIScriptEngine *engine, CScriptDictionary *dic,
const QString &key, void *addr, QMetaType::Type type) {
auto b = isTempBuffered(type);
if (b) {
switch (type) {
case QMetaType::Type::Bool:
dic->Set(key, addr, asTYPEID_BOOL);
break;
case QMetaType::Short:
dic->Set(key, addr, asTYPEID_INT16);
break;
case QMetaType::UShort:
dic->Set(key, addr, asTYPEID_UINT16);
break;
case QMetaType::Int:
case QMetaType::Long:
dic->Set(key, addr, asTYPEID_INT32);
break;
case QMetaType::UInt:
case QMetaType::ULong:
dic->Set(key, addr, asTYPEID_UINT32);
break;
case QMetaType::LongLong:
dic->Set(key, addr, asTYPEID_INT64);
break;
case QMetaType::ULongLong:
dic->Set(key, addr, asTYPEID_UINT64);
break;
case QMetaType::Float:
dic->Set(key, qvariantCastGetValue<float>(addr));
break;
case QMetaType::Double:
dic->Set(key, qvariantCastGetValue<double>(addr));
break;
case QMetaType::UChar:
dic->Set(key, addr, asTYPEID_UINT8);
break;
case QMetaType::SChar:
case QMetaType::Char:
dic->Set(key, addr, asTYPEID_INT8);
break;
default:
// ignore
break;
}
} else {
auto id = qvariantCastASID(engine, type);
Q_ASSERT(id >= 0);
dic->Set(key, addr, id);
}
};
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
auto type =
var.isNull() ? QMetaType::Type::Void : QMetaType::Type(var.userType());
#else
auto type =
var.isNull() ? QMetaType::Type::Void : QMetaType::Type(var.typeId());
#endif
switch (type) {
case QMetaType::Type::Bool:
assignTmpBuffer(buffer, var.toBool());
fn(&buffer, type);
break;
case QMetaType::Short:
case QMetaType::UShort:
assignTmpBuffer(buffer, var.value<ushort>());
fn(&buffer, type);
break;
case QMetaType::Int:
case QMetaType::Long:
case QMetaType::UInt:
case QMetaType::ULong:
assignTmpBuffer(buffer, var.toUInt());
fn(&buffer, type);
break;
case QMetaType::LongLong:
case QMetaType::ULongLong:
assignTmpBuffer(buffer, var.toULongLong());
fn(&buffer, type);
break;
case QMetaType::QChar:
fn(new QChar(var.toChar()), type);
break;
case QMetaType::Float:
assignTmpBuffer(buffer, var.toULongLong());
fn(&buffer, type);
break;
case QMetaType::Double:
assignTmpBuffer(buffer, var.toDouble());
fn(&buffer, type);
break;
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
case QMetaType::Char16:
fn(new QChar(var.value<char16_t>()), type);
break;
case QMetaType::Char32:
fn(new QChar(var.value<char32_t>()), type);
break;
#endif
case QMetaType::UChar:
case QMetaType::SChar:
case QMetaType::Char:
assignTmpBuffer(buffer, var.value<uchar>());
break;
case QMetaType::QString:
fn(new QString(var.toString()), type);
break;
case QMetaType::QByteArray: {
auto value = var.toByteArray();
auto info = engine->GetTypeInfoByDecl("array<byte>");
Q_ASSERT(info);
auto len = value.length();
auto arr = CScriptArray::Create(info, len);
arr->AddRef();
for (int i = 0; i < len; ++i) {
auto addr = arr->At(i);
*reinterpret_cast<char *>(addr) = value.at(i);
}
fn(arr, type);
arr->Release();
} break;
case QMetaType::QVariantMap: {
auto values = var.value<QVariantMap>();
auto dic = CScriptDictionary::Create(engine);
dic->AddRef();
for (auto p = values.constKeyValueBegin();
p != values.constKeyValueEnd(); ++p) {
auto op = std::bind(dicop, engine, dic, p->first,
std::placeholders::_1, std::placeholders::_2);
qvariantCastOp(engine, p->second, op);
}
fn(dic, type);
dic->Release();
} break;
case QMetaType::QVariantHash: {
auto values = var.value<QVariantHash>();
auto dic = CScriptDictionary::Create(engine);
dic->AddRef();
for (auto p = values.constKeyValueBegin();
p != values.constKeyValueEnd(); ++p) {
auto op = std::bind(dicop, engine, dic, p->first,
std::placeholders::_1, std::placeholders::_2);
qvariantCastOp(engine, p->second, op);
}
fn(dic, type);
dic->Release();
} break;
case QMetaType::QStringList: {
auto values = var.toStringList();
auto info = engine->GetTypeInfoByDecl("string");
Q_ASSERT(info);
auto len = values.length();
auto arr = CScriptArray::Create(info, len);
arr->AddRef();
for (int i = 0; i < len; ++i) {
auto addr = arr->At(i);
*reinterpret_cast<QString *>(addr) = values.at(i);
}
fn(arr, type);
arr->Release();
} break;
case QMetaType::QColor:
fn(new QColor(var.value<QColor>()), type);
break;
case QMetaType::Void:
break;
default:
Logger::critical(tr("NotSupportedQMetaType:") + QMetaType(type).name());
break;
}
}
QVariant WingAngelAPI::qvariantGet(asIScriptEngine *engine, const void *raw,
int typeID, bool flag) {
switch (typeID) {
case asTYPEID_BOOL:
return *reinterpret_cast<const bool *>(raw);
case asTYPEID_INT8:
return *reinterpret_cast<const qint8 *>(raw);
case asTYPEID_INT16:
return *reinterpret_cast<const qint16 *>(raw);
case asTYPEID_INT32:
return *reinterpret_cast<const qint32 *>(raw);
case asTYPEID_INT64:
return *reinterpret_cast<const qint64 *>(raw);
case asTYPEID_UINT8:
return *reinterpret_cast<const quint8 *>(raw);
case asTYPEID_UINT16:
return *reinterpret_cast<const quint16 *>(raw);
case asTYPEID_UINT32:
return *reinterpret_cast<const quint32 *>(raw);
case asTYPEID_UINT64:
return *reinterpret_cast<const quint64 *>(raw);
case asTYPEID_FLOAT:
return *reinterpret_cast<const float *>(raw);
case asTYPEID_DOUBLE:
return *reinterpret_cast<const double *>(raw);
default: {
bool isHandle = !!(typeID & asTYPEID_OBJHANDLE);
typeID &= ~asTYPEID_OBJHANDLE;
auto id = engine->GetTypeIdByDecl("char");
if (id == typeID) {
return **getDereferencePointer<QChar *>(raw, isHandle);
}
id = engine->GetTypeIdByDecl("color");
if (id == typeID) {
return **getDereferencePointer<QColor *>(raw, isHandle);
}
id = engine->GetTypeIdByDecl("string");
if (id == typeID) {
return *getDereferencePointer<QString>(raw, isHandle);
}
id = engine->GetTypeIdByDecl("array<byte>");
if (id == typeID) {
auto values = *getDereferencePointer<CScriptArray *>(raw, isHandle);
auto len = values->GetSize();
QByteArray arr;
arr.resize(len);
for (auto i = 0u; i < len; ++i) {
arr[i] = *reinterpret_cast<const char *>(values->At(i));
}
return arr;
}
// ok, checking template type
// no nested supported
auto info = engine->GetTypeInfoById(typeID);
{
auto tname = info->GetName();
if (qstrcmp(tname, "array") == 0) {
auto values =
*getDereferencePointer<CScriptArray *>(raw, isHandle);
auto len = values->GetSize();
// QVector or QList ?
// though are the same on QT6
if (flag) {
QVariantList list;
for (asUINT i = 0; i < len; ++i) {
auto v = values->At(i);
auto item = qvariantGet(
engine, v, values->GetElementTypeId(), false);
list.append(item);
}
return list;
} else {
QVector<QVariant> vector;
for (asUINT i = 0; i < len; ++i) {
auto v = values->At(i);
auto item = qvariantGet(
engine, v, values->GetElementTypeId(), false);
vector.append(item);
}
return QVariant::fromValue(vector);
}
}
if (qstrcmp(tname, "dictionary") == 0) {
auto values =
*getDereferencePointer<CScriptDictionary *>(raw, isHandle);
// QMap or QHash ?
if (flag) {
QVariantHash hash;
for (auto &it : *values) {
// Determine the name of the key
auto key = it.GetKey();
// Get the type and address of the value
int cid = it.GetTypeId();
const void *v = it.GetAddressOfValue();
auto item = qvariantGet(engine, v, cid, false);
hash.insert(key, item);
}
return hash;
} else {
QVariantMap map;
for (auto &it : *values) {
// Determine the name of the key
auto key = it.GetKey();
// Get the type and address of the value
int cid = it.GetTypeId();
const void *v = it.GetAddressOfValue();
auto item = qvariantGet(engine, v, cid, false);
map.insert(key, item);
}
return map;
}
}
}
} break;
}
return {};
}
bool WingAngelAPI::getQVariantGetFlag(
const WingScriptInternal::ScriptFnInfo &info, int index) {
auto &params = info.params;
Q_ASSERT(index >= 0 && index < params.size());
auto minfo = params.at(index).first;
return !!(minfo & WingHex::Meta_List) || !!(minfo & WingHex::Meta_Hash);
}
int WingAngelAPI::qvariantCastASID(asIScriptEngine *engine,
const QMetaType::Type &id) {
switch (id) {
case QMetaType::Type::Bool:
return asTYPEID_BOOL;
case QMetaType::Short:
return asTYPEID_INT16;
case QMetaType::UShort:
return asTYPEID_UINT16;
case QMetaType::Int:
case QMetaType::Long:
return asTYPEID_INT32;
case QMetaType::UInt:
case QMetaType::ULong:
return asTYPEID_UINT32;
case QMetaType::LongLong:
return asTYPEID_INT64;
case QMetaType::ULongLong:
return asTYPEID_UINT64;
case QMetaType::Float:
return asTYPEID_FLOAT;
case QMetaType::Double:
return asTYPEID_DOUBLE;
case QMetaType::QChar:
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
case QMetaType::Char16:
case QMetaType::Char32:
#endif
return engine->GetTypeIdByDecl("char");
case QMetaType::UChar:
return asTYPEID_UINT8;
case QMetaType::SChar:
case QMetaType::Char:
return asTYPEID_INT8;
case QMetaType::QString:
return engine->GetTypeIdByDecl("string");
case QMetaType::QByteArray:
return engine->GetTypeIdByDecl("array<byte>");
case QMetaType::QVariantMap:
case QMetaType::QVariantHash:
return engine->GetTypeIdByDecl("dictionary");
case QMetaType::QStringList:
return engine->GetTypeIdByDecl("array<string>");
case QMetaType::QColor:
return engine->GetTypeIdByDecl("color");
case QMetaType::Void:
return asTYPEID_VOID;
default:
return -1;
}
}
QString WingAngelAPI::qvariantCastASString(const QMetaType::Type &id) {
switch (id) {
case QMetaType::Type::Bool:
return QStringLiteral("bool");
case QMetaType::Short:
return QStringLiteral("int16");
case QMetaType::UShort:
return QStringLiteral("uint16");
case QMetaType::Int:
case QMetaType::Long:
return QStringLiteral("int32");
case QMetaType::UInt:
case QMetaType::ULong:
return QStringLiteral("uint32");
case QMetaType::LongLong:
return QStringLiteral("int64");
case QMetaType::ULongLong:
return QStringLiteral("uint64");
case QMetaType::Float:
return QStringLiteral("float");
case QMetaType::Double:
return QStringLiteral("double");
case QMetaType::QChar:
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
case QMetaType::Char16:
case QMetaType::Char32:
#endif
return QStringLiteral("char");
case QMetaType::UChar:
return QStringLiteral("uint8");
case QMetaType::SChar:
case QMetaType::Char:
return QStringLiteral("int8");
case QMetaType::QString:
return QStringLiteral("string");
case QMetaType::QByteArray:
return QStringLiteral("array<byte>");
case QMetaType::QVariantMap:
case QMetaType::QVariantHash:
return QStringLiteral("dictionary");
case QMetaType::QStringList:
return QStringLiteral("array<string>");
case QMetaType::QColor:
return QStringLiteral("color");
case QMetaType::Void:
return QStringLiteral("void");
default:
return {};
}
}
bool WingAngelAPI::isTempBuffered(QMetaType::Type type) {
switch (type) {
case QMetaType::Bool:
case QMetaType::Short:
case QMetaType::UShort:
case QMetaType::Int:
case QMetaType::Long:
case QMetaType::UInt:
case QMetaType::ULong:
case QMetaType::LongLong:
case QMetaType::ULongLong:
case QMetaType::Float:
case QMetaType::Double:
case QMetaType::UChar:
case QMetaType::SChar:
case QMetaType::Char:
return true;
default:
return false;
}
}
QString WingAngelAPI::type2AngelScriptString(uint type, bool isArg,
bool noModifier) {
auto isArray = !!(type & WingHex::Meta_Array);
auto isList = !!(type & WingHex::Meta_List);
auto isContainer = isArray || isList;
if (isContainer) {
if (isArray && isList) {
return {};
}
}
QString retype;
bool complexType = false;
type = WingHex::MetaType(type & WingHex::MetaTypeMask);
switch (type) {
case WingHex::Meta_Void:
retype = QStringLiteral("void");
break;
case WingHex::Meta_Bool:
retype = QStringLiteral("bool");
break;
case WingHex::Meta_Int:
retype = QStringLiteral("int");
break;
case WingHex::Meta_UInt:
retype = QStringLiteral("uint");
break;
case WingHex::Meta_Int8:
retype = QStringLiteral("int8");
break;
case WingHex::Meta_UInt8:
retype = QStringLiteral("uint8");
break;
case WingHex::Meta_Int16:
retype = QStringLiteral("int16");
break;
case WingHex::Meta_UInt16:
retype = QStringLiteral("uint16");
break;
case WingHex::Meta_Int64:
retype = QStringLiteral("int64");
break;
case WingHex::Meta_UInt64:
retype = QStringLiteral("uint64");
break;
case WingHex::Meta_Float:
retype = QStringLiteral("float");
break;
case WingHex::Meta_Double:
retype = QStringLiteral("double");
break;
case WingHex::Meta_String:
retype = QStringLiteral("string");
break;
case WingHex::Meta_Char:
retype = QStringLiteral("char");
break;
case WingHex::Meta_Byte:
retype = QStringLiteral("byte");
break;
case WingHex::Meta_Color:
retype = QStringLiteral("color");
complexType = true;
break;
case WingHex::Meta_Map:
case WingHex::Meta_Hash:
retype = QStringLiteral("dictionary");
complexType = true;
break;
default:
return {};
}
if (isArray || isList) {
retype.append(QStringLiteral("[]"));
}
if (isArg) {
if (!noModifier && (isContainer || complexType)) {
retype.append(QStringLiteral(" &in"))
.prepend(QStringLiteral("const "));
}
} else {
if (!noModifier) {
// if it's a return type, only array<byte> and array<string> are
// supported in AngelScript
// ( array<byte> -> QByteArray , array<string> -> QStringList ),
// other array types are not suported. PRs are welcomed !!!
// IT'S TOO COMPLEX TO SUPPORT QVARIANTLIST !!!
// You can use unsafe registering to support
// extensive scripting system.
// It will be faster and flexible but not easy to implement.
if (isContainer) {
if (type != WingHex::Meta_Byte &&
type != WingHex::Meta_String) {
return {};
}
retype.append(QStringLiteral("@"));
}
if (complexType) {
retype.append(QStringLiteral("@"));
}
}
}
return retype.trimmed();
}
void WingAngelAPI::script_call(asIScriptGeneric *gen) {
auto fn = gen->GetFunction();
auto p = reinterpret_cast<WingAngelAPI *>(
fn->GetUserData(AsUserDataType::UserData_API));
auto id = reinterpret_cast<qsizetype>(
fn->GetUserData(AsUserDataType::UserData_PluginFn));
auto engine = fn->GetEngine();
Q_ASSERT(p);
Q_ASSERT(id >= 0 && id < p->_sfns.size());
if (id < 0 || id >= p->_sfns.size()) {
return;
}
auto &fns = p->_sfns.at(id);
QVariantList params;
auto total = gen->GetArgCount();
for (decltype(total) i = 0; i < total; ++i) {
auto raw = gen->GetAddressOfArg(i);
auto id = gen->GetArgTypeId(i);
auto obj = qvariantGet(engine, raw, id, getQVariantGetFlag(fns, i));
params.append(obj);
}
auto ret = fns.fn(params);
auto op = [](asIScriptGeneric *gen, void *addr, QMetaType::Type type) {
auto b = isTempBuffered(type);
if (b) {
switch (type) {
case QMetaType::Type::Bool:
gen->SetReturnByte(qvariantCastGetValue<bool>(addr));
break;
case QMetaType::Short:
case QMetaType::UShort:
gen->SetReturnWord(qvariantCastGetValue<ushort>(addr));
break;
case QMetaType::Int:
case QMetaType::Long:
case QMetaType::UInt:
case QMetaType::ULong:
gen->SetReturnDWord(qvariantCastGetValue<asDWORD>(addr));
break;
case QMetaType::LongLong:
case QMetaType::ULongLong:
gen->SetReturnQWord(
qvariantCastGetValue<unsigned long long>(addr));
break;
case QMetaType::Float:
gen->SetReturnFloat(qvariantCastGetValue<float>(addr));
break;
case QMetaType::Double:
gen->SetReturnDouble(qvariantCastGetValue<double>(addr));
break;
case QMetaType::UChar:
case QMetaType::SChar:
case QMetaType::Char:
gen->SetReturnByte(qvariantCastGetValue<uchar>(addr));
break;
default:
// should not go here
Q_ASSERT(false);
break;
}
} else {
gen->SetReturnObject(addr);
}
};
// Checking return type
auto ctx = asGetActiveContext();
if (ret.canConvert<WingHex::ScriptCallError>()) {
auto err = ret.value<WingHex::ScriptCallError>();
auto errmsg = tr("Get Exception While ScriptCall: (%1) %2")
.arg(err.errorCode)
.arg(err.errmsg);
ctx->SetException(errmsg.toUtf8());
return;
}
auto rettype = fns.ret;
auto r = type2AngelScriptString(rettype, false, true);
if (r == QStringLiteral("int")) {
r = QStringLiteral("int32");
} else if (r == QStringLiteral("uint")) {
r = QStringLiteral("uint32");
}
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
auto type =
ret.isNull() ? QMetaType::Type::Void : QMetaType::Type(ret.userType());
#else
auto type =
ret.isNull() ? QMetaType::Type::Void : QMetaType::Type(ret.typeId());
#endif
auto rr = qvariantCastASString(type);
if (r != rr) {
auto msg = tr("InvalidRetType: need ") + r;
ctx->SetException(msg.toUtf8());
return;
}
qvariantCastOp(
engine, ret,
std::bind(op, gen, std::placeholders::_1, std::placeholders::_2));
}
void WingAngelAPI::script_unsafe_call(asIScriptGeneric *gen) {
auto fn = gen->GetFunction();
auto p = reinterpret_cast<WingAngelAPI *>(
fn->GetUserData(AsUserDataType::UserData_API));
auto id = reinterpret_cast<qsizetype>(
fn->GetUserData(AsUserDataType::UserData_PluginFn));
Q_ASSERT(p);
Q_ASSERT(id >= 0 && id < p->_usfns.size());
if (id < 0 || id >= p->_usfns.size()) {
return;
}
// haha, so much simpler than script_call. Pay yourself and
// have a good time!!!
auto &fns = p->_usfns.at(id);
QList<void *> params;
auto total = gen->GetArgCount();
WingHex::UNSAFE_RET ret;
for (decltype(total) i = 0; i < total; ++i) {
auto raw = gen->GetAddressOfArg(i);
params.append(raw);
}
ret = fns(params);
if (std::holds_alternative<bool>(ret)) {
gen->SetReturnByte(std::get<bool>(ret));
} else if (std::holds_alternative<quint8>(ret)) {
gen->SetReturnByte(std::get<quint8>(ret));
} else if (std::holds_alternative<quint16>(ret)) {
gen->SetReturnWord(std::get<quint16>(ret));
} else if (std::holds_alternative<quint32>(ret)) {
gen->SetReturnDWord(std::get<quint32>(ret));
} else if (std::holds_alternative<quint64>(ret)) {
gen->SetReturnQWord(std::get<quint64>(ret));
} else if (std::holds_alternative<float>(ret)) {
gen->SetReturnFloat(std::get<float>(ret));
} else if (std::holds_alternative<double>(ret)) {
gen->SetReturnFloat(std::get<double>(ret));
} else if (std::holds_alternative<void *>(ret)) {
gen->SetReturnAddress(std::get<void *>(ret));
} else if (std::holds_alternative<WingHex::ScriptCallError>(ret)) {
auto ctx = asGetActiveContext();
auto err = std::get<WingHex::ScriptCallError>(ret);
auto errmsg = tr("Get Exception While ScriptCall: (%1) %2")
.arg(err.errorCode)
.arg(err.errmsg);
ctx->SetException(errmsg.toUtf8());
}
}
QString WingAngelAPI::QModelIndex_dataString(const QModelIndex &idx) {
return idx.data().toString();
}
QString WingAngelAPI::QModelIndex_dataChar(const QModelIndex &idx) {
return idx.data().toChar();
}
uint WingAngelAPI::QModelIndex_dataUInt(const QModelIndex &idx) {
return idx.data().toUInt();
}
int WingAngelAPI::QModelIndex_dataInt(const QModelIndex &idx) {
return idx.data().toInt();
}
qlonglong WingAngelAPI::QModelIndex_dataLongLong(const QModelIndex &idx) {
return idx.data().toLongLong();
}
qlonglong WingAngelAPI::QModelIndex_dataULongLong(const QModelIndex &idx) {
return idx.data().toULongLong();
}
float WingAngelAPI::QModelIndex_dataFloat(const QModelIndex &idx) {
return idx.data().toFloat();
}
double WingAngelAPI::QModelIndex_dataDouble(const QModelIndex &idx) {
return idx.data().toDouble();
}
bool WingAngelAPI::execScriptCode(const WingHex::SenderInfo &sender,
const QString &code) {
if (code.isEmpty()) {
return true;
}
QTemporaryFile f;
if (f.open()) {
f.write(code.toUtf8());
f.close();
}
auto handles = _handles;
ScriptMachine::instance().executeScript(ScriptMachine::Background,
f.fileName());
cleanUpHandles(handles);
return false;
}
bool WingAngelAPI::execScript(const WingHex::SenderInfo &sender,
const QString &fileName) {
auto exec = [this, fileName]() -> bool {
auto handles = _handles;
auto ret = ScriptMachine::instance().executeScript(
ScriptMachine::Background, fileName);
cleanUpHandles(handles);
return ret;
};
if (QThread::currentThread() != qApp->thread()) {
bool ret = false;
QMetaObject::invokeMethod(qApp, exec, Qt::BlockingQueuedConnection,
&ret);
return ret;
} else {
return exec();
}
}
bool WingAngelAPI::execCode(const WingHex::SenderInfo &sender,
const QString &code) {
auto exec = [this, code]() -> bool {
auto handles = _handles;
auto ret = ScriptMachine::instance().executeCode(
ScriptMachine::Background, code);
cleanUpHandles(handles);
return ret;
};
if (QThread::currentThread() != qApp->thread()) {
bool ret = false;
QMetaObject::invokeMethod(qApp, exec, Qt::BlockingQueuedConnection,
&ret);
return ret;
} else {
return exec();
}
}
QVector<void *> WingAngelAPI::retriveAsCArray(const WingHex::SenderInfo &sender,
void *array) {
Q_UNUSED(sender);
if (array == nullptr) {
return {};
}
QVector<void *> ret;
auto arr = reinterpret_cast<CScriptArray *>(array);
auto len = arr->GetSize();
for (asUINT i = 0; i < len; ++i) {
ret.append(arr->At(i));
}
return ret;
}
QHash<QString, QPair<QString, const void *>>
WingAngelAPI::retriveAsDictionary(const WingHex::SenderInfo &sender,
void *dic) {
Q_UNUSED(sender);
if (dic == nullptr) {
return {};
}
QHash<QString, QPair<QString, const void *>> ret;
auto dictionary = reinterpret_cast<CScriptDictionary *>(dic);
auto engine = dictionary->GetEngine();
for (auto &it : *dictionary) {
auto info = engine->GetTypeInfoById(it.GetTypeId());
QString type;
if (info) {
type =
info->GetNamespace() + QStringLiteral("::") + info->GetName();
}
ret.insert(it.GetKey(), qMakePair(type, it.GetAddressOfValue()));
}
return ret;
}
void *WingAngelAPI::vector2AsArray(const WingHex::SenderInfo &sender,
WingHex::MetaType type,
const QVector<void *> &content) {
Q_UNUSED(sender);
auto typeStr = type2AngelScriptString(
WingHex::MetaType(type | WingHex::MetaType::Meta_Array), false, true);
if (typeStr.isEmpty()) {
return nullptr;
}
auto engine = ScriptMachine::instance().engine();
auto info = engine->GetTypeInfoByDecl(typeStr.toUtf8());
if (info) {
auto len = content.length();
auto arr = CScriptArray::Create(info, len);
std::memcpy(arr->GetBuffer(), content.data(), len);
return arr;
}
return nullptr;
}
void *WingAngelAPI::list2AsArray(const WingHex::SenderInfo &sender,
WingHex::MetaType type,
const QList<void *> &content) {
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
static_assert(std::is_same_v<QList<int>, QVector<int>>);
return vector2AsArray(sender, type, content);
#else
Q_UNUSED(sender);
auto typeStr = type2AngelScriptString(MetaType(type | MetaType::Meta_Array),
false, true);
if (typeStr.isEmpty()) {
return nullptr;
}
auto engine = ScriptMachine::instance().engine();
auto info = engine->GetTypeInfoByDecl(typeStr.toUtf8());
if (info) {
auto len = content.length();
auto arr = CScriptArray::Create(info, len);
for (decltype(len) i = 0; i < len; ++i) {
arr->SetValue(i, content.at(i));
}
return arr;
}
return nullptr;
#endif
}
void WingAngelAPI::deleteAsArray(const WingHex::SenderInfo &sender,
void *array) {
Q_UNUSED(sender);
if (array) {
reinterpret_cast<CScriptArray *>(array)->Release();
}
}
void *WingAngelAPI::newAsDictionary(
const WingHex::SenderInfo &sender,
const QHash<QString, QPair<WingHex::MetaType, void *>> &content) {
Q_UNUSED(sender);
auto engine = ScriptMachine::instance().engine();
auto dic = CScriptDictionary::Create(engine);
for (auto p = content.constKeyValueBegin(); p != content.constKeyValueEnd();
++p) {
auto key = p->first;
auto typeStr = type2AngelScriptString(p->second.first, false, true);
auto id = engine->GetTypeIdByDecl(typeStr.toUtf8());
if (id < 0) {
continue;
}
dic->Set(key, p->second.second, id);
}
return dic;
}
void WingAngelAPI::deleteAsDictionary(const WingHex::SenderInfo &sender,
void *dic) {
Q_UNUSED(sender);
if (dic) {
reinterpret_cast<CScriptDictionary *>(dic)->Release();
}
}
void WingAngelAPI::cleanUpHandles(const QVector<int> &handles) {
for (auto &h : _handles) {
if (!handles.contains(h)) {
closeHandle(h);
}
}
_handles = handles;
}
CScriptArray *WingAngelAPI::_HexReader_selectedBytes(qsizetype index) {
return byteArrayWrapperFunction(
[this, index]() -> QByteArray { return selectedBytes(index); });
}
CScriptArray *WingAngelAPI::_HexReader_selectionBytes() {
// context, which can be used to obtain a pointer to the
// engine.
asIScriptContext *ctx = asGetActiveContext();
if (ctx) {
asIScriptEngine *engine = ctx->GetEngine();
auto ret = selectionBytes();
// The script array needs to know its type to properly handle the
// elements. Note that the object type should be cached to avoid
// performance issues if the function is called frequently.
asITypeInfo *arrt = engine->GetTypeInfoByDecl("array<array<byte>>");
asITypeInfo *t = engine->GetTypeInfoByDecl("array<byte>");
Q_ASSERT(arrt && t);
auto array = CScriptArray::Create(arrt, ret.size());
for (qsizetype i = 0; i < ret.size(); ++i) {
auto buffer = ret.at(i);
auto conarr = CScriptArray::Create(t, buffer.size());
for (qsizetype i = 0; i < buffer.size(); ++i) {
auto v = buffer.at(i);
conarr->SetValue(i, &v);
}
array->SetValue(i, conarr);
}
return array;
} else {
return nullptr;
}
}
CScriptArray *WingAngelAPI::_HexReader_readBytes(qsizetype offset,
qsizetype len) {
return byteArrayWrapperFunction(
[this, offset, len]() -> QByteArray { return readBytes(offset, len); });
}
qsizetype WingAngelAPI::_HexReader_findNext(qsizetype begin,
const CScriptArray &ba) {
// If called from the script, there will always be an active
// context, which can be used to obtain a pointer to the engine.
asIScriptContext *ctx = asGetActiveContext();
if (ctx) {
asIScriptEngine *engine = ctx->GetEngine();
bool ok = false;
auto byteID = engine->GetTypeIdByDecl("byte");
Q_ASSERT(byteID);
auto bab = cArray2ByteArray(ba, byteID, &ok);
return findNext(begin, bab);
} else {
return qsizetype(-1);
}
}
qsizetype WingAngelAPI::_HexReader_findPrevious(qsizetype begin,
const CScriptArray &ba) {
// If called from the script, there will always be an active
// context, which can be used to obtain a pointer to the engine.
asIScriptContext *ctx = asGetActiveContext();
if (ctx) {
asIScriptEngine *engine = ctx->GetEngine();
bool ok = false;
auto byteID = engine->GetTypeIdByDecl("byte");
auto bab = cArray2ByteArray(ba, byteID, &ok);
if (ok) {
return findPrevious(begin, bab);
} else {
return qsizetype(-1);
}
} else {
return qsizetype(-1);
}
}
bool WingAngelAPI::_HexController_writeBytes(qsizetype offset,
const CScriptArray &ba) {
// If called from the script, there will always be an active
// context, which can be used to obtain a pointer to the engine.
asIScriptContext *ctx = asGetActiveContext();
if (ctx) {
asIScriptEngine *engine = ctx->GetEngine();
bool ok = false;
auto byteID = engine->GetTypeIdByDecl("byte");
Q_ASSERT(byteID);
auto bab = cArray2ByteArray(ba, byteID, &ok);
if (!ok) {
return false;
}
return writeBytes(offset, bab);
} else {
return false;
}
}
bool WingAngelAPI::_HexController_insertBytes(qsizetype offset,
const CScriptArray &ba) {
// If called from the script, there will always be an active
// context, which can be used to obtain a pointer to the engine.
asIScriptContext *ctx = asGetActiveContext();
if (ctx) {
asIScriptEngine *engine = ctx->GetEngine();
bool ok = false;
auto byteID = engine->GetTypeIdByDecl("byte");
Q_ASSERT(byteID);
auto bab = cArray2ByteArray(ba, byteID, &ok);
if (!ok) {
return false;
}
return insertBytes(offset, bab);
} else {
return false;
}
}
bool WingAngelAPI::_HexController_appendBytes(const CScriptArray &ba) {
// If called from the script, there will always be an active
// context, which can be used to obtain a pointer to the engine.
asIScriptContext *ctx = asGetActiveContext();
if (ctx) {
asIScriptEngine *engine = ctx->GetEngine();
bool ok = false;
auto byteID = engine->GetTypeIdByDecl("byte");
Q_ASSERT(byteID);
auto bab = cArray2ByteArray(ba, byteID, &ok);
if (!ok) {
return false;
}
return appendBytes(bab);
}
return false;
}
void WingAngelAPI::_UI_Toast(const QString &message, const QString &icon) {
toast(QPixmap(icon), message);
}
QColor WingAngelAPI::_Color_get(const QString &caption) {
return dlgGetColor(caption);
}
void WingAngelAPI::_MSG_AboutQt(const QString &title) {
msgAboutQt(nullptr, title);
}
QMessageBox::StandardButton
WingAngelAPI::_MSG_Information(const QString &title, const QString &text,
QMessageBox::StandardButtons buttons,
QMessageBox::StandardButton defaultButton) {
return msgInformation(nullptr, title, text, buttons, defaultButton);
}
QMessageBox::StandardButton
WingAngelAPI::_MSG_Question(const QString &title, const QString &text,
QMessageBox::StandardButtons buttons,
QMessageBox::StandardButton defaultButton) {
return msgQuestion(nullptr, title, text, buttons, defaultButton);
}
QMessageBox::StandardButton
WingAngelAPI::_MSG_Warning(const QString &title, const QString &text,
QMessageBox::StandardButtons buttons,
QMessageBox::StandardButton defaultButton) {
return msgWarning(nullptr, title, text, buttons, defaultButton);
}
QMessageBox::StandardButton
WingAngelAPI::_MSG_Critical(const QString &title, const QString &text,
QMessageBox::StandardButtons buttons,
QMessageBox::StandardButton defaultButton) {
return msgCritical(nullptr, title, text, buttons, defaultButton);
}
void WingAngelAPI::_MSG_About(const QString &title, const QString &text) {
return msgAbout(nullptr, title, text);
}
QMessageBox::StandardButton
WingAngelAPI::_MSG_msgbox(QMessageBox::Icon icon, const QString &title,
const QString &text,
QMessageBox::StandardButtons buttons,
QMessageBox::StandardButton defaultButton) {
return msgbox(nullptr, icon, title, text, buttons, defaultButton);
}
QString WingAngelAPI::_InputBox_GetText(const QString &title,
const QString &label,
QLineEdit::EchoMode echo,
const QString &text, bool *ok,
Qt::InputMethodHints inputMethodHints) {
return dlgGetText(nullptr, title, label, echo, text, ok, inputMethodHints);
}
QString WingAngelAPI::_InputBox_GetMultiLineText(
const QString &title, const QString &label, const QString &text, bool *ok,
Qt::InputMethodHints inputMethodHints) {
return dlgGetMultiLineText(nullptr, title, label, text, ok,
inputMethodHints);
}
QString WingAngelAPI::_InputBox_getItem(const QString &title,
const QString &label,
const CScriptArray &items, int current,
bool editable, bool *ok,
Qt::InputMethodHints inputMethodHints) {
asIScriptContext *ctx = asGetActiveContext();
if (ctx) {
auto engine = ctx->GetEngine();
Q_ASSERT(engine);
auto stringID = engine->GetTypeIdByDecl("string");
Q_ASSERT(stringID >= 0);
bool o = false;
auto ret = cArray2QStringList(items, stringID, &o);
if (o) {
return WingInputDialog::getItem(nullptr, title, label, ret, current,
editable, ok, inputMethodHints);
} else {
*ok = false;
return {};
}
}
return {};
}
int WingAngelAPI::_InputBox_GetInt(const QString &title, const QString &label,
int value, int minValue, int maxValue,
int step, bool *ok) {
return dlgGetInt(nullptr, title, label, value, minValue, maxValue, step,
ok);
}
double WingAngelAPI::_InputBox_GetDouble(const QString &title,
const QString &label, double value,
double minValue, double maxValue,
int decimals, bool *ok, double step) {
return dlgGetDouble(nullptr, title, label, value, minValue, maxValue,
decimals, ok, step);
}
QString WingAngelAPI::_FileDialog_GetExistingDirectory(
const QString &caption, const QString &dir, QFileDialog::Options options) {
return dlgGetExistingDirectory(nullptr, caption, dir, options);
}
QString WingAngelAPI::_FileDialog_GetOpenFileName(
const QString &caption, const QString &dir, const QString &filter,
QString *selectedFilter, QFileDialog::Options options) {
return dlgGetOpenFileName(nullptr, caption, dir, filter, selectedFilter,
options);
}
CScriptArray *WingAngelAPI::_FileDialog_getOpenFileNames(
const QString &caption, const QString &dir, const QString &filter,
QString *selectedFilter, QFileDialog::Options options) {
return retarrayWrapperFunction(
[&]() -> QStringList {
return WingFileDialog::getOpenFileNames(
nullptr, caption, dir, filter, selectedFilter, options);
},
"array<string>");
}
QString WingAngelAPI::_FileDialog_GetSaveFileName(
const QString &caption, const QString &dir, const QString &filter,
QString *selectedFilter, QFileDialog::Options options) {
return dlgGetSaveFileName(nullptr, caption, dir, filter, selectedFilter,
options);
}