wx: lua window

This commit is contained in:
p989 2009-12-15 06:37:49 +00:00
parent dea5e779c8
commit cea3cc3ff6
3 changed files with 296 additions and 1 deletions

View File

@ -0,0 +1,190 @@
// Copyright (C) 2003 Dolphin Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0.
// 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 General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
#include "LuaWindow.h"
#include "lua-engine.h"
#include <map>
int wxLuaWindow::luaCount = 0;
// Constant Colors
const unsigned long COLOR_GRAY = 0xDCDCDC;
BEGIN_EVENT_TABLE(wxLuaWindow, wxWindow)
EVT_SIZE( wxLuaWindow::OnEvent_Window_Resize)
EVT_CLOSE( wxLuaWindow::OnEvent_Window_Close)
EVT_BUTTON(ID_BUTTON_CLOSE, wxLuaWindow::OnEvent_ButtonClose_Press)
EVT_BUTTON(ID_BUTTON_LOAD, wxLuaWindow::OnEvent_ScriptLoad_Press)
EVT_BUTTON(ID_BUTTON_RUN, wxLuaWindow::OnEvent_ScriptRun_Press)
EVT_BUTTON(ID_BUTTON_STOP, wxLuaWindow::OnEvent_ScriptStop_Press)
END_EVENT_TABLE()
std::map<int, wxLuaWindow *> g_contextMap;
void LuaPrint(int uid, const char *msg)
{
g_contextMap[uid]->PrintMessage(msg);
}
void LuaStop(int uid, bool ok)
{
if(ok)
g_contextMap[uid]->PrintMessage("Script completed successfully!\n");
else
g_contextMap[uid]->PrintMessage("Script failed\n");
g_contextMap[uid]->OnStop();
}
wxLuaWindow::wxLuaWindow(wxFrame* parent, const wxPoint& pos, const wxSize& size) :
wxFrame(parent, wxID_ANY, _T("Lua Script Console"), pos, size, wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE)
{
// Create Lua context
luaID = luaCount;
OpenLuaContext(luaID, LuaPrint, NULL, LuaStop);
g_contextMap[luaID] = this;
luaCount++;
bScriptRunning = false;
// Create the GUI controls
InitGUIControls();
// Setup Window
SetBackgroundColour(wxColour(COLOR_GRAY));
SetSize(size);
SetPosition(pos);
Layout();
Show();
}
wxLuaWindow::~wxLuaWindow()
{
// On Disposal
CloseLuaContext(luaID);
g_contextMap.erase(luaID);
}
void wxLuaWindow::PrintMessage(const char *text)
{
m_TextCtrl_Log->AppendText(wxString::FromAscii(text));
}
void wxLuaWindow::InitGUIControls()
{
// $ Log Console
m_Tab_Log = new wxPanel(this, ID_TAB_LOG, wxDefaultPosition, wxDefaultSize);
m_TextCtrl_Log = new wxTextCtrl(m_Tab_Log, ID_TEXTCTRL_LOG, wxT(""), wxDefaultPosition, wxSize(100, 600),
wxTE_MULTILINE | wxTE_READONLY | wxTE_DONTWRAP);
wxBoxSizer *HStrip1 = new wxBoxSizer(wxHORIZONTAL);
wxBoxSizer *sTabLog = new wxBoxSizer(wxVERTICAL);
sTabLog->Add(HStrip1, 0, wxALL, 5);
sTabLog->Add(m_TextCtrl_Log, 1, wxALL|wxEXPAND, 5);
m_Tab_Log->SetSizer(sTabLog);
m_Tab_Log->Layout();
// Button Strip
m_Button_Close = new wxButton(this, ID_BUTTON_CLOSE, _T("Close"), wxDefaultPosition, wxDefaultSize);
m_Button_LoadScript = new wxButton(this, ID_BUTTON_LOAD, _T("Load Script..."), wxDefaultPosition, wxDefaultSize);
m_Button_Run = new wxButton(this, ID_BUTTON_RUN, _T("Run"), wxDefaultPosition, wxDefaultSize);
m_Button_Stop = new wxButton(this, ID_BUTTON_STOP, _T("Stop"), wxDefaultPosition, wxDefaultSize);
wxBoxSizer* sButtons = new wxBoxSizer(wxHORIZONTAL);
m_Button_Run->Disable();
m_Button_Stop->Disable();
sButtons->Add(m_Button_Close, 0, wxALL, 5);
sButtons->Add(m_Button_LoadScript, 0, wxALL, 5);
sButtons->Add(m_Button_Run, 0, wxALL, 5);
sButtons->Add(m_Button_Stop, 0, wxALL, 5);
wxBoxSizer* sMain = new wxBoxSizer(wxVERTICAL);
sMain->Add(m_Tab_Log, 1, wxEXPAND|wxALL, 5);
sMain->Add(sButtons, 0, wxALL, 5);
SetSizer(sMain);
Layout();
Fit();
}
void wxLuaWindow::OnEvent_ScriptLoad_Press(wxCommandEvent& WXUNUSED(event))
{
wxString path = wxFileSelector(
_T("Select the script to load"),
wxEmptyString, wxEmptyString, wxEmptyString,
wxString::Format
(
_T("Lua Scripts (lua)|*.lua|All files (%s)|%s"),
wxFileSelectorDefaultWildcardStr,
wxFileSelectorDefaultWildcardStr
),
wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST,
this);
if(!path.IsEmpty())
currentScript = path;
else
return;
m_TextCtrl_Log->Clear();
// m_TextCtrl_Log->AppendText(wxString::FromAscii(
// StringFromFormat("Script %s loaded successfully.\n",
// (const char *)path.mb_str()).c_str()));
m_Button_Run->Enable();
}
void wxLuaWindow::OnEvent_ScriptRun_Press(wxCommandEvent& WXUNUSED(event))
{
m_TextCtrl_Log->AppendText(wxT("Running script...\n"));
bScriptRunning = true;
m_Button_LoadScript->Disable();
m_Button_Run->Disable();
m_Button_Stop->Enable();
RunLuaScriptFile(luaID, (const char *)currentScript.mb_str());
}
void wxLuaWindow::OnEvent_ScriptStop_Press(wxCommandEvent& WXUNUSED(event))
{
StopLuaScript(luaID);
OnStop();
PrintMessage("Script stopped!\n");
}
void wxLuaWindow::OnStop()
{
bScriptRunning = false;
m_Button_LoadScript->Enable();
m_Button_Run->Enable();
m_Button_Stop->Disable();
}
void wxLuaWindow::OnEvent_Window_Resize(wxSizeEvent& WXUNUSED (event))
{
Layout();
}
void wxLuaWindow::OnEvent_ButtonClose_Press(wxCommandEvent& WXUNUSED (event))
{
Destroy();
}
void wxLuaWindow::OnEvent_Window_Close(wxCloseEvent& WXUNUSED (event))
{
Destroy();
}

View File

@ -0,0 +1,93 @@
// Copyright (C) 2003 Dolphin Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0.
// 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 General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
#ifndef __LUAWINDOW_H__
#define __LUAWINDOW_H__
#include <wx/wx.h>
#include <wx/sizer.h>
#include <wx/filepicker.h>
#include <wx/statbmp.h>
#include <wx/imaglist.h>
#include <wx/treectrl.h>
#include <wx/gbsizer.h>
#include <wx/notebook.h>
#include <wx/mimetype.h>
#include <wx/colour.h>
#include <wx/listbox.h>
#include <string>
class wxLuaWindow : public wxFrame
{
public:
wxLuaWindow(wxFrame* parent, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
void PrintMessage(const char *text);
void OnStop();
virtual ~wxLuaWindow();
protected:
static int luaCount;
int luaID;
bool bScriptRunning;
wxString currentScript;
// Event Table
DECLARE_EVENT_TABLE();
// --- GUI Controls ---
wxPanel *m_Tab_Log;
wxButton *m_Button_Close, *m_Button_LoadScript, *m_Button_Run,
*m_Button_Stop;
wxTextCtrl *m_TextCtrl_Log;
// GUI IDs
enum
{
ID_TAB_LOG,
ID_BUTTON_CLOSE,
ID_BUTTON_LOAD,
ID_BUTTON_RUN,
ID_BUTTON_STOP,
ID_TEXTCTRL_LOG
};
void InitGUIControls();
// --- Wx Events Handlers ---
// $ Window
void OnEvent_Window_Resize(wxSizeEvent& event);
void OnEvent_Window_Close(wxCloseEvent& event);
// $ Buttons
void OnEvent_ButtonClose_Press(wxCommandEvent& event);
void OnEvent_ScriptLoad_Press(wxCommandEvent& event);
void OnEvent_ScriptRun_Press(wxCommandEvent& event);
void OnEvent_ScriptStop_Press(wxCommandEvent& event);
};
#endif

View File

@ -15,6 +15,8 @@
#include "wx/stdpaths.h"
#include "LuaWindow.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
@ -306,6 +308,11 @@ case 88://x
void recordMovie(wxCommandEvent& event) {}
void stopMovie(wxCommandEvent& event) {FCEUI_StopMovie();}
void OnOpenLuaWindow(wxCommandEvent& WXUNUSED (event))
{
new wxLuaWindow(this, wxDefaultPosition, wxSize(600, 390));
}
private:
DECLARE_EVENT_TABLE()
};
@ -346,7 +353,8 @@ enum
wRecordMovie,
wStopMovie,
wSaveScreenshotAs,
wQuickScreenshot
wQuickScreenshot,
wLuaWindow
};
BEGIN_EVENT_TABLE(DesmumeFrame, wxFrame)
@ -397,6 +405,8 @@ EVT_MENU(wRecordMovie,DesmumeFrame::recordMovie)
EVT_MENU(w3dView,DesmumeFrame::_3dView)
EVT_MENU(wLuaWindow,DesmumeFrame::OnOpenLuaWindow)
END_EVENT_TABLE()
IMPLEMENT_APP(Desmume)
@ -454,6 +464,8 @@ DesmumeFrame::DesmumeFrame(const wxString& title)
fileMenu->Append(wRecordMovie, "Record Movie");
fileMenu->Append(wStopMovie, "Stop Movie");
fileMenu->AppendSeparator();
fileMenu->Append(wLuaWindow, "New Lua Script Window...");
fileMenu->AppendSeparator();
fileMenu->Append(wExit, "E&xit\tAlt-X", "Quit this program");
emulationMenu->Append(wPause, "&Pause\tAlt-P", "Pause Emulation");