Skip to content

Commit efc12cd

Browse files
committed
Add initial support for external plugins
1 parent 8fa6f7a commit efc12cd

6 files changed

+105
-1
lines changed

docs_gen/ExternalPluginSupport.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# External Plugin Support
2+
Plugin developers are able to execute Lua code from their own plugins. Notepad++ provides a mechanism for sending messages between plugins using `NPPM_MSGTOPLUGIN`.
3+
4+
*Note: More commands and fields can be added if needed; feel free to open an issue on GitHub.*
5+
6+
<br/>
7+
8+
Information needed for LuaScript is defined in the custom struct defined [here](https://github.com/dail8859/LuaScript/blob/master/src/NppLuaScript.h).
9+
10+
- `structVersion` - (reserved for future use) must always be `1`
11+
- `flags` - (reserved for future use) must always be `0`
12+
- `script` - UTF-8 encoded string. The meaning of this is dependent on the command executed.
13+
14+
<br/>
15+
16+
### Commands
17+
18+
- `LS_EXECUTE_SCRIPT` - executes a file from the hard drive. `script` specifies the full file path to execute.
19+
- `LS_EXECUTE_STATEMENT` - executes an arbitrary string. `script` is the actual Lua code to execute.
20+
21+
<br/>
22+
23+
### Example
24+
The following is example C code to execute a string.
25+
26+
```c
27+
void function()
28+
{
29+
CommunicationInfo ci;
30+
LuaScriptInfo lsi;
31+
32+
lsi.structVersion = 1;
33+
lsi.flags = 0;
34+
lsi.script = "for i = 1, 10 do print(i) end";
35+
36+
ci.srcModuleName = TEXT("MyPlugin.dll");
37+
ci.internalMsg = LS_EXECUTE_STATEMENT;
38+
ci.info = reinterpret_cast<void *>(&lsi);
39+
40+
SendMessage(nppHwnd, NPPM_MSGTOPLUGIN, reinterpret_cast<WPARAM>(TEXT("LuaScript.dll")), reinterpret_cast<LPARAM>(&ci));
41+
}
42+
```

docs_gen/config.ld

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ use_markdown_titles = true
4747

4848
topics = { -- Put any md files here
4949
'Callbacks.md',
50+
'ExternalPluginSupport.md',
5051
}
5152

5253
file = { -- sourcecode to parse comments from (Lua or C)

src/LuaScript.cpp

+17-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "NppExtensionAPI.h"
2929
#include "GUI.h"
3030
#include "StyleWriter.h"
31+
#include "NppLuaScript.h"
3132

3233
// --- Menu callbacks ---
3334
static void showConsole();
@@ -412,7 +413,22 @@ extern "C" __declspec(dllexport) void beNotified(SCNotification *notifyCode) {
412413
return;
413414
}
414415

415-
extern "C" __declspec(dllexport) LRESULT messageProc(UINT Message, WPARAM wParam, LPARAM lParam) {
416+
// NOTE: this function's return value doesn't actually matter since N++ never uses it
417+
extern "C" __declspec(dllexport) LRESULT messageProc(UINT message, WPARAM wParam, LPARAM lParam) {
418+
if (message == NPPM_MSGTOPLUGIN) {
419+
auto ci = reinterpret_cast<const CommunicationInfo*>(lParam);
420+
auto lsi = reinterpret_cast<const LuaScriptInfo*>(ci->info);
421+
422+
if (lsi && lsi->structVersion == 1) {
423+
if (ci->internalMsg == LS_EXECUTE_SCRIPT && lsi->script != nullptr) {
424+
LuaExtension::Instance().RunFile(GUI::StringFromUTF8(lsi->script).c_str());
425+
}
426+
else if (ci->internalMsg == LS_EXECUTE_STATEMENT && lsi->script != nullptr) {
427+
LuaExtension::Instance().RunString(lsi->script);
428+
}
429+
}
430+
}
431+
416432
return TRUE;
417433
}
418434

src/LuaScript.vcxproj

+1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@
239239
<ClInclude Include="IFaceTableMixer.h" />
240240
<ClInclude Include="NppExtensionAPI.h" />
241241
<ClInclude Include="NppIFaceTable.h" />
242+
<ClInclude Include="NppLuaScript.h" />
242243
<ClInclude Include="Npp\Docking.h" />
243244
<ClInclude Include="Npp\dockingResource.h" />
244245
<ClInclude Include="Npp\menuCmdID.h" />

src/LuaScript.vcxproj.filters

+3
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@
128128
<ClInclude Include="SciIFaceTable.h">
129129
<Filter>Header Files</Filter>
130130
</ClInclude>
131+
<ClInclude Include="NppLuaScript.h">
132+
<Filter>Header Files</Filter>
133+
</ClInclude>
131134
</ItemGroup>
132135
<ItemGroup>
133136
<ResourceCompile Include="Dialogs\resource.rc">

src/NppLuaScript.h

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// This file is part of LuaScript.
2+
//
3+
// Copyright (C)2017 Justin Dailey <[email protected]>
4+
//
5+
// LuaScript is free software; you can redistribute it and/or
6+
// modify it under the terms of the GNU General Public License
7+
// as published by the Free Software Foundation; either
8+
// version 2 of the License, or (at your option) any later version.
9+
//
10+
// This program is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU General Public License
16+
// along with this program; if not, write to the Free Software
17+
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18+
19+
#ifndef NPPLUASCRIPT_H
20+
#define NPPLUASCRIPT_H
21+
22+
#define LS_START (WM_USER + 3500)
23+
24+
// Commands that can be sent to LuaScript
25+
26+
#define LS_EXECUTE_SCRIPT (LS_START + 0)
27+
#define LS_EXECUTE_STATEMENT (LS_START + 1)
28+
29+
struct LuaScriptInfo
30+
{
31+
// The structure's version. This must be 1.
32+
int structVersion;
33+
34+
// Configurable flags
35+
int flags;
36+
37+
// Script to run. This has different meaning based on the command.
38+
const char *script;
39+
};
40+
41+
#endif

0 commit comments

Comments
 (0)