-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyaya_plugin_main.txt
325 lines (299 loc) · 8.43 KB
/
yaya_plugin_main.txt
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
// ****使い方****
//
// 関数名はイベント名そのままです。SHIORI/3.0テンプレートのように、
// 文字列取得時頭にOn_がつくようなことはありません。
//
// 値を返すとその内容をSakuraScriptとして実行します
// 以下の変数に代入すると、動作を制御できます。
//
// res_event , res_reference[0]...[n]
// 指定したイベントをReferenceつきで発生します。referenceは省略可
//
// res_target
// スクリプトやイベントをどのゴーストに送るかを指定します。
// Sakura名を指定してください。また、__SYSTEM_ALL_GHOST__で全起動中ゴーストに通知します。
// 省略すると「プラグインメニューを実行したゴースト」に送ります
//
// res_marker
// バルーンのマーカー(下に小さく出るステータス表示)に表示する文字を指定できます。
//
// res_event_option / res_script_option
// それぞれ、EventOption / ScriptOptionヘッダを設定します。
//
// 詳しくはプラグイン仕様書を参照してください。
// http://emily.shillest.net/specwiki/index.php?PLUGIN%2F2.0%2F%E4%BB%95%E6%A7%98%E6%9B%B8
//
OnMenuExec
{
SHIORI3FW.StructInstalledGhostList()
sys.fnc.readCharameL()
sys.fnc.sorttimeline()
sys.fnc.makeHTML()
_path = 'file:///' + GETSETTING('coreinfo.path') + 'html\public.html'
_res = "\![open,browser,%(_path)]\e"
res_event = 'OnCharameLNetwork'
res_script_option = 'nobreak,notranslate'
_res
}
ghostpathlist
{
g.ghostpathlist = reference
}
pluginpathlist
{
g.pluginpathlist = reference
}
sys.fnc.readCharameL
{
g.screen_name = IARRAY()
g.reply = IARRAY()
g.datetimestr = IARRAY()
g.datetime = IARRAY()
g.message = IARRAY()
foreach g.ghostpathlist; _dir {
sys.fnc.readCharameLSub(_dir)
}
}
sys.fnc.readCharameLSub
{
_filelist = FENUM(_argv[0])
_dirlist = IARRAY
foreach _filelist; _file {
if '\' _in_ _file; _dirlist ,= REPLACE(_file, '\', '')
}
foreach _dirlist; _s {
_filename = _argv[0] + _s + '\ghost\master\CharameL.txt'
FCHARSET('Shift_JIS')
if !FOPEN(_filename, 'r')
continue
_m = 0
_mes = IARRAY()
while 1 {
_line = FREAD(_filename)
if _line == -1 {
if _m == 1 {
g.screen_name ,= _s
g.message ,= JOIN(_mes, '<br />')
_m = 0
_mes = IARRAY()
}
break
}
if _line == '' {
if _m == 1 {
g.screen_name ,= _s
g.message ,= JOIN(_mes, '<br />')
_m = 0
_mes = IARRAY()
}
}
elseif RE_MATCH(_line, '^To: .+$') {
g.reply ,= RE_REPLACEEX(_line, '^To: (.+)$', '$1')
_m = 1
}
elseif RE_MATCH(_line, '^Date: .+$') {
_time = RE_REPLACEEX(_line, '^Date: (.+)$', '$1')
g.datetimestr ,= _time
_t = RE_REPLACEEX(_time, '^(\d{4})/(\d{2})/(\d{2}) (\d{2}):(\d{2}):(\d{2})$', '$1,$2,$3,$4,$5,$6')
g.datetime ,= GETSECCOUNT(_t[0], _t[1], _t[2], 0, _t[3], _t[4], _t[5])
_m = 1
}
elseif _m == 1 {
_mes ,= _line
}
}
FCLOSE(_filename)
}
}
sys.fnc.sorttimeline
{
_index = ASORT('double,descending,index', g.datetime)
_tmp.screen_name = IARRAY()
_tmp.reply = IARRAY()
_tmp.datetimestr = IARRAY()
_tmp.datetime = IARRAY()
_tmp.message = IARRAY()
_n = ARRAYSIZE(_index)
for _i = 0; _i < _n; _i++ {
_tmp.screen_name[_i] = g.screen_name[_index[_i]]
_tmp.reply[_i] = g.reply[_index[_i]]
_tmp.datetimestr[_i] = g.datetimestr[_index[_i]]
_tmp.datetime[_i] = g.datetime[_index[_i]]
_tmp.message[_i] = g.message[_index[_i]]
}
g.screen_name = _tmp.screen_name
g.reply = _tmp.reply
g.datetimestr = _tmp.datetimestr
g.datetime = _tmp.datetime
g.message = _tmp.message
}
sys.fnc.makeHTML
{
_filename = '.\html\template\template.html'
FCHARSET('UTF-8')
if !FOPEN(_filename, 'r')
return
_a_template = IARRAY()
while 1 {
_line = FREAD(_filename)
if _line == -1
break
_a_template ,= _line
}
FCLOSE(_filename)
_a_screen_name = g.screen_name
_a_reply = g.reply
_a_datetimestr = g.datetimestr
_a_message = g.message
_image_directory = '../../CharameL/image/'
_path = '.\html\public.html'
FCHARSET('UTF-8')
if !FOPEN(_path, 'w') {
return
}
foreach _a_template; _line {
if _line == '[:pagebody:]' {
_n = ARRAYSIZE(_a_screen_name)
for _i = 0; _i < _n; _i++ {
_reply_screen_name = sys.fnc.g_to_d(_a_reply[_i])
if _reply_screen_name == ''
continue
_name = sys.fnc.d_to_s(_a_screen_name[_i])
_time = RE_REPLACEEX(_a_datetimestr[_i], '^(\d{4})/(\d{2})/(\d{2}) (\d{2}):(\d{2}):(\d{2})$', '$1-$2-$3T$4:$5:$6')
_t = '<dt><img src="' + _image_directory + _a_screen_name[_i] + '.png" width="32" height="32" alt="' + _a_screen_name[_i] + '" />'/
+ '<span class="name">' + _name + '</span> '/
+ '<span class="screen_name">@' + _a_screen_name[_i] + '</span> '/
+ '<time datetime="' + _time + '">' + _a_datetimestr[_i] + '</time></dt>'
FWRITE(_path, _t)
_mes = RE_REPLACEEX(_a_message[_i], "((?:https?|ftp):\/\/[-_.!~*'()a-zA-Z0-9;\/?:@&=+$,%#]+)", '<a href="$1">$1</a>')
_t = '<dd><a href="#">@' + _reply_screen_name + '</a> ' + _mes + '</dd>'
FWRITE(_path, _t)
}
}
else {
FWRITE(_path, _line)
}
}
FCLOSE(_path)
}
sys.fnc.g_to_d
{
_i = ASEARCH(_argv[0], installedghostlist)
if _i >= 0
ghostdirlist[_i]
else
''
}
sys.fnc.d_to_s
{
_i = ASEARCH(_argv[0], ghostdirlist)
if _i >= 0
installedsakuralist[_i]
else
''
}
//------------------------------------------------------------------------------
//関数名:SHIORI3FW.StructInstalledGhostList
//機能 :構築
//------------------------------------------------------------------------------
SHIORI3FW.StructInstalledGhostList
{
installedghostlist = IARRAY()
installedsakuralist = IARRAY()
installedkerolist = IARRAY()
ghostdirlist = IARRAY()
foreach g.ghostpathlist; _dir {
SHIORI3FW.StructInstalledGhostListSub(_dir)
}
}
SHIORI3FW.StructInstalledGhostListSub
{
// ghostディレクトリ配下のディレクトリを抽出
_filelist = FENUM(_argv[0])
_dirlist = IARRAY
foreach _filelist; _file {
if '\' _in_ _file; _dirlist ,= REPLACE(_file, '\', '')
}
_dirnum = ARRAYSIZE(_dirlist)
// 取得開始位置と取得数を求める
StructGhostList.Index = 0
_num = _dirnum
// リスト作成主処理
for _i = 0; _i < _num; _i++ {
// 取得位置の更新
StructGhostList.Index++
if StructGhostList.Index >= _dirnum; StructGhostList.Index = 0
// descript.txtから情報取得
_ghostname = SHIORI3FW.GetGhostNameFromDescriptTxt(_argv[0] + _dirlist[StructGhostList.Index])
// リストへ追加
if ARRAYSIZE(_ghostname) {
installedghostlist ,= _ghostname[0]
installedsakuralist ,= _ghostname[1]
installedkerolist ,= _ghostname[2]
ghostdirlist ,= _dirlist[StructGhostList.Index]
}
}
}
//------------------------------------------------------------------------------
//関数名:SHIORI3FW.GetGhostNameFromDescriptTxt
//機能 :descript.txtからname/sakura.name/kero.nameを取得します
//引数 :_argv[0] 取得対象のゴーストディレクトリ
//------------------------------------------------------------------------------
SHIORI3FW.GetGhostNameFromDescriptTxt
{
_charset = SHIORI3FW.GetCharsetFromDescriptTxt(_argv[0])
if _charset == ''
_charset = 'Shift_JIS'
FCHARSET(_charset)
if !FOPEN(_filename = "%_argv[0]\ghost\master\descript.txt", "r")
return
_ghostname = IARRAY()
_flag = 0
while _flag != 7 {
if (_line = FREAD(_filename)) == -1; break
case CUTSPACE(_line[0]) {
when 'name' {
_ghostname[0] = CUTSPACE(_line[1])
_flag++
}
when 'sakura.name' {
_ghostname[1] = CUTSPACE(_line[1])
_flag += 2
}
when 'kero.name' {
_ghostname[2] = CUTSPACE(_line[1])
_flag += 4
}
}
}
FCLOSE(_filename)
_ghostname
}
//------------------------------------------------------------------------------
//関数名:SHIORI3FW.GetCharsetFromDescriptTxt
//機能 :descript.txtからcharsetを取得します
//引数 :_argv[0] 取得対象のゴーストディレクトリ
//------------------------------------------------------------------------------
SHIORI3FW.GetCharsetFromDescriptTxt
{
if !FOPEN(_filename = "%_argv[0]\ghost\master\descript.txt", "r")
return
_charset = ''
_flag = 0
while _flag != 1 {
if (_line = FREAD(_filename)) == -1; break
case CUTSPACE(_line[0]) {
when 'charset' {
_charset = CUTSPACE(_line[1])
_flag++
}
}
}
FCLOSE(_filename)
_charset
}
//------------------------------------------------------------------------------
version
{
'CharameLNetwork/0.5'
}