-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext_python_play.js
164 lines (148 loc) · 4.23 KB
/
next_python_play.js
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
var _work_changed = false;
var editor = CodeMirror.fromTextArea($("#code_textarea")[0], {
//script_once_code为你的textarea的ID号
lineNumbers: true, //是否显示行号
mode: "shell", //默认脚本编码
lineWrapping: true, //是否强制换行
});
editor.on("keypress", function () {
editor.showHint(); //显示智能提示
if (!_work_changed) {
_work_changed = true;
$("#save_work_box").show();
}
});
editor.setOption("theme", "solarized dark");
editor.setOption("mode", "python");
editor.setValue($("#code_textarea").val());
window.CodeMirror = CodeMirror;
function FormatTime(t,date){
var date=new Date(date);
var o = {
"M+" : date.getMonth()+1, //月份
"d+" : date.getDate(), //日
"h+" : date.getHours(), //小时
"m+" : date.getMinutes(), //分
"s+" : date.getSeconds(), //秒
"q+" : Math.floor((date.getMonth()+3)/3), //季度
"S" : date.getMilliseconds() //毫秒
};
if(/(y+)/.test(t)){
t=t.replace(RegExp.$1,(date.getFullYear()+"").substr(4-RegExp.$1.length));
};
for(var k in o){
if(new RegExp("("+ k +")").test(t)){
t=t.replace(RegExp.$1,(RegExp.$1.length==1)?(o[k]):(("00"+ o[k]).substr((""+o[k]).length)));
};
}
return t;
};
function getQueryString(name) {
const url_string = window.location.href
const url = new URL(url_string);
return url.searchParams.get(name);
}
//动态获取作品
function getWork() {
AjaxFn("/python/getWork", { id: getQueryString('id') }, function (r) {
if ("ok" == r.status) {
show_python_work(r.work);
} else {
automsg(r.msg);
}
});
}
!(function () {
getWork(); //主动执行一次
})();
var _work_id = 0;
var _work_state = 0;
var _work_title = "";
function show_python_userinfo(work) {
console.log(work);
}
//用一个作品数据初始化界面
function show_python_work(work) {
if (_work_changed) {
layer.confirm(
"作品有更新,是否放弃保存作品?",
{ title: "重要提示", shadeClose: true },
function (index) {
_work_changed = false;
$("#save_work_box").hide();
show_python_work(work);
layer.close(index);
}
);
return;
}
//清除各类状态
run_clear(); //清除运行结果
window.location.hash = work.id;
console.log(work);
window.editor.setValue(work.source); //设置作品源代码
_work_id = work.id;
_work_state = work.state;
_work_title = work.title;
}
// 运行部分
function outf(H) {
var t = document.getElementById("output");
t.innerText = t.innerText + H;
}
// 运行部分
function tocode() {
location.href=("/python/edit#"+ _work_id )
}
function builtinRead(n) {
if (Sk.builtinFiles === undefined || Sk.builtinFiles.files[n] === undefined)
throw `File not found: '${n}'`;
return Sk.builtinFiles.files[n];
}
// 代码模式运行
function run_it() {
source = window.editor.getValue();
var OP_Div = document.getElementById("output");
OP_Div.innerText = "";
Sk.pre = "output";
Sk.configure({ output: outf, read: builtinRead });
(Sk.TurtleGraphics || (Sk.TurtleGraphics = {}))["target"] = "pythoncanvas";
var draw_ = Sk.misceval.asyncToPromise(function () {
f();
return Sk.importMainWithBody("<stdin>", ![], source, !![]);
});
draw_.then(
function (r) {},
function (t) {
alert(t.toString());
}
);
}
// 清除运行结果
function run_clear() {
document.getElementById("output").innerText = "";
document.getElementById("pythoncanvas").innerText = "";
}
function f() {
if (Sk.TurtleGraphics || Sk.TurtleGraphics == {}) {
var o = document.getElementById("canvas_box");
var w = o.offsetWidth; //宽度
var h = o.offsetHeight; //高度
$("#pythoncanvas").css("height", h + "px");
Sk.TurtleGraphics.width = w;
Sk.TurtleGraphics.height = h;
var C1 = $("#pythoncanvas>canvas:eq(0)");
C1 = u(C1, w, h);
var C2 = $("#pythoncanvas>canvas:eq(1)");
C2 = u(C2, w, h);
}
}
function u(C, W, H) {
if (C.length > 0) {
var D = C[0].getContext("2d");
DC_ = D.getImageData(0, 0, C[0].width, C[0].height);
C.attr("height", H).attr("width", W);
D.putImageData(DC_, 0, 0);
return C;
}
}