LunaHook-mirror/LunaHook/resource/lunajspatch.js

110 lines
3.6 KiB
JavaScript
Raw Normal View History

var fontface='';
2024-03-25 19:14:14 +08:00
var magicsend='\x01LUNAFROMJS\x01'
var magicrecv='\x01LUNAFROMHOST\x01'
function splitfonttext(transwithfont){
2024-03-25 14:59:33 +08:00
if(transwithfont.substr(0,magicsend.length)==magicsend) //not trans
{
split=transwithfont.search('\x02')
return transwithfont.substr(split+1);
}
else if(transwithfont.substr(0,magicrecv.length)==magicrecv)
{
transwithfont=transwithfont.substr(magicrecv.length)
//magic font \x02 text
split=transwithfont.search('\x02')
fontface=transwithfont.substr(0,split)
text=transwithfont.substr(split+1)
return text;
}
else{
return transwithfont;
}
}
2024-03-25 14:59:33 +08:00
function clipboardsender(s,lpsplit){
lpsplit = typeof lpsplit !== 'undefined' ? lpsplit : 0
//magic split \x02 text
s=magicsend+lpsplit.toString()+'\x02'+s;
2024-03-20 22:51:24 +08:00
try{
const _clipboard = require('nw.gui').Clipboard.get();
_clipboard.set(s, 'text');
transwithfont=_clipboard.get('text');
}
2024-03-20 22:51:24 +08:00
catch(err){
try{
const clipboard = require('electron').clipboard;
clipboard.writeText(s);
transwithfont= clipboard.readText();
}
catch(err2){
return s;
}
}
if(transwithfont.length==0)return s;
return splitfonttext(transwithfont)
}
function rpgmakerhook(){
if(Window_Message.prototype.originstartMessage)return;
2024-03-25 16:14:29 +08:00
Window_Base.prototype.drawTextEx_origin=Window_Base.prototype.drawTextEx;
Window_Base.prototype.drawText_origin=Window_Base.prototype.drawText;
Window_Message.prototype.originstartMessage=Window_Message.prototype.startMessage;
Bitmap.prototype.origin_makeFontNameText=Bitmap.prototype._makeFontNameText;
Bitmap.prototype._makeFontNameText=function(){
if(fontface=='')return this.origin_makeFontNameText();
return (this.fontItalic ? 'Italic ' : '') +
this.fontSize + 'px ' + fontface;
}
Window_Message.prototype.startMessage = function()
{
gametext = $gameMessage.allText();
2024-03-20 22:51:24 +08:00
resp=clipboardsender(gametext);
$gameMessage._texts=[resp]
this.originstartMessage();
};
2024-03-25 16:13:58 +08:00
Window_Base.prototype.drawText=function(text, x, y, maxWidth, align){
text=clipboardsender(text,1)
return this.drawText_origin(text,x,y,maxWidth,align)
}
Window_Base.prototype.drawTextEx=function(text, x, y){
text=clipboardsender(text,1)
return this.drawTextEx_origin(text, x, y)
}
}
2024-03-20 22:51:24 +08:00
function tyranohook() {
2024-03-17 02:09:28 +08:00
if(tyrano.plugin.kag.tag.text.originstart)return;
tyrano.plugin.kag.tag.text.originstart=tyrano.plugin.kag.tag.text.start;
2024-03-25 14:59:33 +08:00
tyrano.plugin.kag.tag.chara_ptext.startorigin=tyrano.plugin.kag.tag.chara_ptext.start;
2024-03-17 02:09:28 +08:00
tyrano.plugin.kag.tag.text.start = function (pm) {
if (1 != this.kag.stat.is_script && 1 != this.kag.stat.is_html) {
2024-03-20 22:51:24 +08:00
pm.val=clipboardsender(pm.val);
if(fontface!=''){
this.kag.stat.font.face=fontface
}
2024-03-17 02:09:28 +08:00
}
return this.originstart(pm)
}
2024-03-25 14:59:33 +08:00
tyrano.plugin.kag.tag.chara_ptext.start = function (pm) {
pm.name=clipboardsender(pm.name,1)
return this.startorigin(pm)
}
}
function retryinject(times){
if(times==0)return;
2024-03-16 13:40:08 +08:00
try{
if(window.tyrano && tyrano.plugin){
2024-03-20 22:51:24 +08:00
tyranohook();
2024-03-16 13:40:08 +08:00
}
else if(window.Utils && Utils.RPGMAKER_NAME){
2024-03-20 22:51:24 +08:00
rpgmakerhook();
2024-03-16 13:40:08 +08:00
}
else{
setTimeout(retryinject,3000,times-1);
}
}
2024-03-16 13:40:08 +08:00
catch(err){
//非主线程甚至没有window对象会弹窗报错
}
}
2024-03-25 21:05:25 +08:00
retryinject(3)