-
Notifications
You must be signed in to change notification settings - Fork 37
/
xmake-extra.lua
213 lines (189 loc) · 7.67 KB
/
xmake-extra.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
-- Local Usage:
--
-- add_deps("commonlibsf")
-- add_rules("commonlibsf.plugin", {
-- name = "Plugin Name",
-- author = "Author Name",
-- description = "Plugin Description",
-- email = "[email protected]"
-- options = {
-- -- disable all compatibility checks completely
-- sig_scanning = true,
-- no_struct_use = true
-- }
-- })
local PLUGIN_FILE = [[
#include <SFSE/SFSE.h>
#include <REL/Relocation.h>
using namespace std::literals;
extern "C" __declspec(dllexport)
constinit auto SFSEPlugin_Version = []() noexcept {
SFSE::PluginVersionData v{};
v.PluginVersion({ ${PLUGIN_VERSION_MAJOR}, ${PLUGIN_VERSION_MINOR}, ${PLUGIN_VERSION_PATCH} });
v.PluginName("${PLUGIN_NAME}");
v.AuthorName("${PLUGIN_AUTHOR}");
v.UsesSigScanning(${OPTION_SIG_SCANNING});
v.UsesAddressLibrary(${OPTION_ADDRESS_LIBRARY});
v.HasNoStructUse(${OPTION_NO_STRUCT_USE});
v.IsLayoutDependent(${OPTION_LAYOUT_DEPENDENT});
return v;
}();]]
local PLUGIN_RC_FILE = [[
#include <winres.h>
1 VERSIONINFO
FILEVERSION ${PLUGIN_VERSION_MAJOR}, ${PLUGIN_VERSION_MINOR}, ${PLUGIN_VERSION_PATCH}, 0
PRODUCTVERSION ${PROJECT_VERSION_MAJOR}, ${PROJECT_VERSION_MINOR}, ${PROJECT_VERSION_PATCH}, 0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "${PLUGIN_DESCRIPTION}"
VALUE "FileVersion", "${PLUGIN_VERSION}.0"
VALUE "InternalName", "${PLUGIN_NAME}"
VALUE "LegalCopyright", "${PLUGIN_AUTHOR} | ${PLUGIN_LICENSE}"
VALUE "ProductName", "${PROJECT_NAME}"
VALUE "ProductVersion", "${PROJECT_VERSION}.0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END]]
rule("commonlibsf.plugin")
add_deps("win.sdk.resource")
on_config(function(target)
import("core.base.semver")
import("core.project.depend")
import("core.project.project")
target:set("arch", "x64")
target:set("kind", "shared")
target:add("installfiles", target:targetfile(), { prefixdir = "SFSE/Plugins" })
target:add("installfiles", target:symbolfile(), { prefixdir = "SFSE/Plugins" })
if os.getenv("XSE_SF_MODS_PATH") then
target:set("installdir", path.join(os.getenv("XSE_SF_MODS_PATH"), target:name()))
elseif os.getenv("XSE_SF_GAME_PATH") then
target:set("installdir", path.join(os.getenv("XSE_SF_GAME_PATH"), "Data"))
end
local conf = target:extraconf("rules", "commonlibsf.plugin")
local conf_dir = path.join(target:autogendir(), "rules", "commonlibsf", "plugin")
if conf.options then
if conf.options.sig_scanning then
conf.options.address_library = false
else
conf.options.sig_scanning = false
if conf.options.address_library == nil then
conf.options.address_library = true
end
end
if conf.options.no_struct_use then
conf.options.layout_dependent = false
else
conf.options.no_struct_use = false
if conf.options.layout_dependent == nil then
conf.options.layout_dependent = true
end
end
else
conf.options = {
sig_scanning = false,
address_library = true,
no_struct_use = false,
layout_dependent = true
}
end
local conf_map = {
PLUGIN_AUTHOR = conf.author or "",
PLUGIN_DESCRIPTION = conf.description or "",
PLUGIN_EMAIL = conf.email or "",
PLUGIN_LICENSE = (target:license() or "Unknown") .. " License",
PLUGIN_NAME = conf.name or target:name(),
PLUGIN_VERSION = target:version() or "0.0.0",
PLUGIN_VERSION_MAJOR = semver.new(target:version() or "0.0.0"):major(),
PLUGIN_VERSION_MINOR = semver.new(target:version() or "0.0.0"):minor(),
PLUGIN_VERSION_PATCH = semver.new(target:version() or "0.0.0"):patch(),
PROJECT_NAME = project.name() or "",
PROJECT_VERSION = project.version() or "0.0.0",
PROJECT_VERSION_MAJOR = semver.new(project.version() or "0.0.0"):major(),
PROJECT_VERSION_MINOR = semver.new(project.version() or "0.0.0"):minor(),
PROJECT_VERSION_PATCH = semver.new(project.version() or "0.0.0"):patch(),
OPTION_SIG_SCANNING = conf.options.sig_scanning,
OPTION_ADDRESS_LIBRARY = conf.options.address_library,
OPTION_NO_STRUCT_USE = conf.options.no_struct_use,
OPTION_LAYOUT_DEPENDENT = conf.options.layout_dependent
}
local conf_parse = function(a_str)
return a_str:gsub("(%${([^\n]-)})", function(_, a_var)
local result = conf_map[a_var:trim()]
if type(result) ~= "string" then
result = tostring(result)
end
assert(result ~= nil, "cannot get variable(%s)", a_var)
return result
end)
end
local add_file = function(a_path, a_data)
local file_path = path.join(conf_dir, a_path)
depend.on_changed(function()
local file = io.open(file_path, "w")
if file then
file:write(conf_parse(a_data), "\n")
file:close()
end
end, { dependfile = target:dependfile(file_path), files = project.allfiles()})
target:add("files", file_path)
end
add_file("plugin.cpp", PLUGIN_FILE)
add_file("version.rc", PLUGIN_RC_FILE)
end)
on_install(function(target)
local srcfiles, dstfiles = target:installfiles()
if srcfiles and #srcfiles > 0 and dstfiles and #dstfiles > 0 then
for idx, srcfile in ipairs(srcfiles) do
os.trycp(srcfile, dstfiles[idx])
end
end
end)
on_package(function(target)
import("core.project.config")
import("core.project.project")
import("utils.archive")
local archive_name = target:name() .. "-" .. (target:version() or "0.0.0") .. ".zip"
print("packing %s .. ", archive_name)
local root_dir = path.join(os.tmpdir(), "packages", project.name() or "", target:name())
os.tryrm(root_dir)
local srcfiles, dstfiles = target:installfiles(path.join(root_dir, "Data"))
if srcfiles and #srcfiles > 0 and dstfiles and #dstfiles > 0 then
for idx, srcfile in ipairs(srcfiles) do
os.trycp(srcfile, dstfiles[idx])
end
else
return
end
local archive_path = path.join(config.buildir(), "packages", archive_name)
local old_dir = os.cd(root_dir)
local archive_files = os.files("**")
os.cd(old_dir)
archive.archive(path.absolute(archive_path), archive_files, { curdir = root_dir })
end)
after_build(function(target)
import("core.project.depend")
import("core.project.project")
import("core.project.task")
depend.on_changed(function()
local srcfiles, dstfiles = target:installfiles()
if srcfiles and #srcfiles > 0 and dstfiles and #dstfiles > 0 then
task.run("install")
end
end, { changed = target:is_rebuilt(), files = { target:targetfile() } })
end)