mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
a3efbbac3f
The Unicode state is not tracked using a stack instead of a raw boolean. This means that a Unicode script that e.g. updates a non-Unicode script measure will now work properly.
230 lines
5.8 KiB
C++
230 lines
5.8 KiB
C++
/*
|
|
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; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
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 for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "StdAfx.h"
|
|
#include "MeasureScript.h"
|
|
#include "lua/LuaManager.h"
|
|
#include "Litestep.h"
|
|
#include "Rainmeter.h"
|
|
|
|
const char* g_InitializeFunctionName = "Initialize";
|
|
const char* g_UpdateFunctionName = "Update";
|
|
const char* g_GetStringFunctionName = "GetStringValue";
|
|
|
|
/*
|
|
** The constructor
|
|
**
|
|
*/
|
|
MeasureScript::MeasureScript(MeterWindow* meterWindow, const WCHAR* name) : Measure(meterWindow, name),
|
|
m_HasUpdateFunction(false),
|
|
m_HasGetStringFunction(false),
|
|
m_ValueType(LUA_TNIL)
|
|
{
|
|
LuaManager::Initialize();
|
|
}
|
|
|
|
/*
|
|
** The destructor
|
|
**
|
|
*/
|
|
MeasureScript::~MeasureScript()
|
|
{
|
|
UninitializeLuaScript();
|
|
LuaManager::Finalize();
|
|
}
|
|
|
|
void MeasureScript::UninitializeLuaScript()
|
|
{
|
|
m_LuaScript.Uninitialize();
|
|
|
|
m_HasUpdateFunction = false;
|
|
m_HasGetStringFunction = false;
|
|
}
|
|
|
|
void MeasureScript::Initialize()
|
|
{
|
|
Measure::Initialize();
|
|
|
|
if (m_LuaScript.IsFunction(g_InitializeFunctionName))
|
|
{
|
|
m_LuaScript.RunFunction(g_InitializeFunctionName);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** Runs the function "Update()" in the script.
|
|
**
|
|
*/
|
|
void MeasureScript::UpdateValue()
|
|
{
|
|
if (m_HasUpdateFunction)
|
|
{
|
|
m_ValueType = m_LuaScript.RunFunctionWithReturn(g_UpdateFunctionName, m_Value, m_StringValue);
|
|
|
|
if (m_ValueType == LUA_TNIL && m_HasGetStringFunction)
|
|
{
|
|
// For backwards compatbility
|
|
m_ValueType = m_LuaScript.RunFunctionWithReturn(g_GetStringFunctionName, m_Value, m_StringValue);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
** Returns the value as a string.
|
|
**
|
|
*/
|
|
const WCHAR* MeasureScript::GetStringValue()
|
|
{
|
|
return (m_ValueType == LUA_TSTRING) ? CheckSubstitute(m_StringValue.c_str()) : nullptr;
|
|
}
|
|
|
|
/*
|
|
** Read the options specified in the ini file.
|
|
**
|
|
*/
|
|
void MeasureScript::ReadOptions(ConfigParser& parser, const WCHAR* section)
|
|
{
|
|
Measure::ReadOptions(parser, section);
|
|
|
|
std::wstring scriptFile = parser.ReadString(section, L"ScriptFile", L"");
|
|
if (!scriptFile.empty())
|
|
{
|
|
if (m_MeterWindow)
|
|
{
|
|
m_MeterWindow->MakePathAbsolute(scriptFile);
|
|
}
|
|
|
|
if (!m_Initialized ||
|
|
wcscmp(scriptFile.c_str(), m_LuaScript.GetFile().c_str()) != 0)
|
|
{
|
|
UninitializeLuaScript();
|
|
|
|
if (m_LuaScript.Initialize(scriptFile))
|
|
{
|
|
bool hasInitializeFunction = m_LuaScript.IsFunction(g_InitializeFunctionName);
|
|
m_HasUpdateFunction = m_LuaScript.IsFunction(g_UpdateFunctionName);
|
|
|
|
auto L = m_LuaScript.GetState();
|
|
lua_rawgeti(L, LUA_GLOBALSINDEX, m_LuaScript.GetRef());
|
|
|
|
*(MeterWindow**)lua_newuserdata(L, sizeof(MeterWindow*)) = m_MeterWindow;
|
|
lua_getglobal(L, "MeterWindow");
|
|
lua_setmetatable(L, -2);
|
|
lua_setfield(L, -2, "SKIN");
|
|
|
|
*(Measure**)lua_newuserdata(L, sizeof(Measure*)) = this;
|
|
lua_getglobal(L, "Measure");
|
|
lua_setmetatable(L, -2);
|
|
lua_setfield(L, -2, "SELF");
|
|
|
|
if (!m_LuaScript.IsUnicode())
|
|
{
|
|
// For backwards compatibility.
|
|
|
|
m_HasGetStringFunction = m_LuaScript.IsFunction(g_GetStringFunctionName);
|
|
if (m_HasGetStringFunction)
|
|
{
|
|
LogWarningF(this, L"Script: Using deprecated GetStringValue()");
|
|
}
|
|
|
|
lua_getfield(L, -1, "PROPERTIES");
|
|
if (lua_isnil(L, -1) == 0)
|
|
{
|
|
lua_pushnil(L);
|
|
|
|
// Look in the table for values to read from the section
|
|
while (lua_next(L, -2))
|
|
{
|
|
lua_pop(L, 1);
|
|
const char* strKey = lua_tostring(L, -1);
|
|
const std::wstring wstrKey = StringUtil::Widen(strKey);
|
|
const std::wstring& wstrValue =
|
|
parser.ReadString(section, wstrKey.c_str(), L"");
|
|
if (!wstrValue.empty())
|
|
{
|
|
const std::string strStrVal = StringUtil::Narrow(wstrValue);
|
|
lua_pushstring(L, strStrVal.c_str());
|
|
lua_setfield(L, -3, strKey);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Pop PROPERTIES table.
|
|
lua_pop(L, 1);
|
|
}
|
|
|
|
// Pop our table.
|
|
lua_pop(L, 1);
|
|
|
|
if (m_Initialized)
|
|
{
|
|
// If the measure is already initialized and the script has changed, we need to
|
|
// manually call Initialize().
|
|
Initialize();
|
|
}
|
|
|
|
// Valid script.
|
|
return;
|
|
}
|
|
}
|
|
else if (m_LuaScript.IsInitialized())
|
|
{
|
|
// Already initialized.
|
|
return;
|
|
}
|
|
}
|
|
|
|
LogErrorF(this, L"Script: File not valid");
|
|
UninitializeLuaScript();
|
|
}
|
|
|
|
/*
|
|
** Executes a custom bang.
|
|
**
|
|
*/
|
|
void MeasureScript::Command(const std::wstring& command)
|
|
{
|
|
m_LuaScript.RunString(command);
|
|
}
|
|
|
|
//static void stackDump(lua_State *L)
|
|
//{
|
|
// LuaManager::LuaLogger::Debug(" ---------------- Stack Dump ----------------" );
|
|
// for (int i = lua_gettop(L); i > 0; --i)
|
|
// {
|
|
// int t = lua_type(L, i);
|
|
// switch (t)
|
|
// {
|
|
// case LUA_TSTRING:
|
|
// LuaManager::LuaLogger::Debug("%d:'%s'", i, lua_tostring(L, i));
|
|
// break;
|
|
//
|
|
// case LUA_TBOOLEAN:
|
|
// LuaManager::LuaLogger::Debug("%d: %s", i, lua_toboolean(L, i) ? "true" : "false");
|
|
// break;
|
|
//
|
|
// case LUA_TNUMBER:
|
|
// LuaManager::LuaLogger::Debug("%d: %g", i, lua_tonumber(L, i));
|
|
// break;
|
|
//
|
|
// default:
|
|
// LuaManager::LuaLogger::Debug("%d: %s", i, lua_typename(L, t));
|
|
// break;
|
|
// }
|
|
// }
|
|
// LuaManager::LuaLogger::Debug("--------------- Stack Dump Finished ---------------" );
|
|
//}
|