forked from Dreamer-Paul/Pio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
164 lines (135 loc) · 6.87 KB
/
Plugin.php
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
<?php
/**
* 一个简易的 Live2D 插件,在 <a href="https://github.com/journey-ad/live2d_src">@Jad</a> 的项目上增加交互功能
*
* @package Pio
* @author Dreamer-Paul
* @version 2.4
* @link https://paugram.com
*/
class Pio_Plugin implements Typecho_Plugin_Interface {
/* 激活插件方法 */
public static function activate() {
Typecho_Plugin::factory('Widget_Archive')->header = array('Pio_Plugin', 'header');
Typecho_Plugin::factory('Widget_Archive')->footer = array('Pio_Plugin', 'footer');
}
/* 禁用插件方法 */
public static function deactivate() {
}
/* 插件配置方法 */
public static function config(Typecho_Widget_Helper_Form $form) {
// 读取模型文件夹
$models = array();
$load = glob("../usr/plugins/Pio/models/*");
foreach ($load as $key => $value) {
$single = substr($value, 26);
$models[$single] = ucfirst($single);
};
// 选择模型
$choose_models = new Typecho_Widget_Helper_Form_Element_Checkbox('choose_models', $models, 'pio', _t('选择模型'), _t('选择插件 Models 目录下的模型,每个模型为一个文件夹,并确定配置文件名为 <a>model.json</a>'));
$form->addInput($choose_models);
// 选择外链模型
$custom_model = new Typecho_Widget_Helper_Form_Element_Text('custom_model', NULL, NULL, _t('选择外链模型'), _t('在这里填入一个模型配置文件 <a>model.json</a> 的地址,可供使用外链模型,不填则使用插件目录下的模型'));
$form->addInput($custom_model);
// 自定义定位
$position = new Typecho_Widget_Helper_Form_Element_Radio('position',
array(
'left' => _t('靠左'),
'right' => _t('靠右'),
),
'left', _t('自定义位置'), _t('自定义看板娘所在的位置'));
$form->addInput($position);
// 自定义宽高
$custom_width = new Typecho_Widget_Helper_Form_Element_Text('custom_width', NULL, NULL, _t('自定义宽度'), _t('在这里填入自定义宽度,部分模型需要修改'));
$form->addInput($custom_width);
$custom_height = new Typecho_Widget_Helper_Form_Element_Text('custom_height', NULL, NULL, _t('自定义高度'), _t('在这里填入自定义高度,部分模型需要修改'));
$form->addInput($custom_height);
// 夜间模式函数
$night = new Typecho_Widget_Helper_Form_Element_Text('night', NULL, NULL, _t('夜间模式函数'), _t('如果你的主题支持夜间模式,请在这里填写主题对应的 JS 函数'));
$form->addInput($night);
// 展现模式
$custom_mode = new Typecho_Widget_Helper_Form_Element_Radio('custom_mode',
array(
'static' => _t('静态'),
'fixed' => _t('固定'),
'draggable' => _t('可移动'),
),
'static', _t('展现模式'), _t('自定义看板娘的展现模式。静态模式将不启用按钮交互功能'));
$form->addInput($custom_mode);
// 隐藏看板娘
$hidden = new Typecho_Widget_Helper_Form_Element_Radio('hidden',
array(
'0' => _t('关闭'),
'1' => _t('开启'),
),
'0', _t('隐藏看板娘'), _t('开启后将在移动设备上隐藏看板娘'));
$form->addInput($hidden);
// 是否开启时间小贴士
$tips = new Typecho_Widget_Helper_Form_Element_Radio('tips',
array(
'0' => _t('关闭'),
'1' => _t('开启'),
),
'0', _t('时间小贴士'), _t('开启后将在没有访问来源的情况下展示,覆盖入站提示'));
$form->addInput($tips);
// 交互提示扩展
$dialog = new Typecho_Widget_Helper_Form_Element_Textarea('dialog', NULL, NULL, _t('交互提示扩展'), _t('在这里填入你的自定义交互提示配置信息,如想保持默认,请留空'));
$form->addInput($dialog);
}
/* 个人用户的配置方法 */
public static function personalConfig(Typecho_Widget_Helper_Form $form) {
}
/* 插件实现方法 */
public static function header() {
echo("<link href='" . Helper::options()->pluginUrl . "/Pio/static/pio.css' rel='stylesheet' type='text/css'/>\n");
}
public static function footer() {
// 生成画布
function getCanvas() {
$height = Typecho_Widget::widget('Widget_Options')->Plugin('Pio')->custom_height;
$width = Typecho_Widget::widget('Widget_Options')->Plugin('Pio')->custom_width;
$str = '<div class="waifu"><div class="waifu-tips"></div><canvas id="live2d" class="live2d"></canvas></div>';
// return '<canvas id="pio" width="' . (!$width ? 280 : $width) . '" height="' . (!$height ? 250 : $height) . '"></canvas>';
return $str;
}
// 生成载入器
function getLoader() {
$plugin = Typecho_Widget::widget('Widget_Options')->Plugin('Pio');
$config = array(
"mode" => $plugin->custom_mode,
"hidden" => $plugin->hidden == 1 ? true : false,
"content" => $plugin->dialog ? json_decode($plugin->dialog, true) : array()
);
if ($plugin->custom_model) {
$model = array($plugin->custom_model);
} else if ($plugin->choose_models) {
$model = $plugin->choose_models;
if (is_array($model)) {
foreach ($model as &$item) {
$item = Helper::options()->pluginUrl . "/Pio/models/" . $item . "/model.json";
}
} else {
$model = array(Helper::options()->pluginUrl . "/Pio/models/" . $model . "/model.json");
}
} else {
$model = array(Helper::options()->pluginUrl . "/Pio/models/pio/model.json");
}
if ($plugin->night) {
$config["night"] = $plugin->night;
}
if ($plugin->tips) {
$config["tips"] = true;
}
$config["model"] = $model;
// return '<script>var pio = new Paul_Pio(' . json_encode($config, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) . ');</script>';
return "<script src='" . Helper::options()->pluginUrl . "/Pio/static/initiator.js'></script>" . "\n";
}
$canvas = getCanvas();
$loader = getLoader();
$position = Typecho_Widget::widget('Widget_Options')->Plugin('Pio')->position == "left" ? " left" : " right";
echo str_replace(array("{position}", "{canvas}"), array($position, $canvas),
'<div class="pio-container{position}"><div class="pio-action"></div>{canvas}</div>'
);
echo $loader;
}
}