Fixed preview url
This commit is contained in:
parent
17d1bddbf1
commit
0335dadcea
@ -9,7 +9,7 @@ Step-by-step algebra calculator for Raspberry PI.
|
||||
# Live preview
|
||||
This preview has been built using TeaVM: a JVM made in javascript.
|
||||
Obviously it runs slower than the original.
|
||||
https://local.cavallium.it/webtests/warppiweb/
|
||||
https://local.cavallium.it/calculator/
|
||||
|
||||
# Keypad PCB
|
||||
https://workspace.circuitmaker.com/Projects/Details/Andrea-Cavalli/Scientific-calculator-Keypad
|
||||
|
@ -134,7 +134,7 @@ public class CalculatorHUD extends HUD {
|
||||
} else {
|
||||
r.glColor(0xFF990000);
|
||||
}
|
||||
r.glDrawStringLeft(0, StaticVars.screenSize[1] - ((currentDebugLine+1) * (r.getCurrentFont().getCharacterHeight()+1)), "[" + String.format("%1$03d", session.debugScreenID) + "] " + title.toUpperCase());
|
||||
r.glDrawStringLeft(0, StaticVars.screenSize[1] - ((currentDebugLine+1) * (r.getCurrentFont().getCharacterHeight()+1)), "[" + String.format("%1$03d", session.debugScreenID) + "]" + title.toUpperCase());
|
||||
if (session == Engine.INSTANCE.getHardwareDevice().getDisplayManager().getScreen()) {
|
||||
r.glColor(0xFF00CC00);
|
||||
} else {
|
||||
|
@ -49,9 +49,9 @@ public class DesktopConsoleUtils implements it.cavallium.warppi.Platform.Console
|
||||
if (StaticVars.outputLevel >= level) {
|
||||
final String time = getTimeString();
|
||||
if (StaticVars.outputLevel == 0)
|
||||
println(System.out, "[" + time + "] " + str);
|
||||
println(System.out, "[" + time + "]" + str);
|
||||
else
|
||||
println(System.out, "[" + time + "] " + str);
|
||||
println(System.out, "[" + time + "]" + str);
|
||||
}
|
||||
}
|
||||
|
||||
@ -69,9 +69,9 @@ public class DesktopConsoleUtils implements it.cavallium.warppi.Platform.Console
|
||||
if (StaticVars.outputLevel >= level) {
|
||||
final String time = getTimeString();
|
||||
if (StaticVars.outputLevel == 0)
|
||||
println(System.out, "[" + time + "][" + prefix + "] " + str);
|
||||
println(System.out, "[" + time + "][" + prefix + "]" + str);
|
||||
else
|
||||
println(System.out, "[" + time + "][" + prefix + "] " + str);
|
||||
println(System.out, "[" + time + "][" + prefix + "]" + str);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -49,9 +49,9 @@ public class HardwareConsoleUtils implements it.cavallium.warppi.Platform.Consol
|
||||
if (StaticVars.outputLevel >= level) {
|
||||
final String time = getTimeString();
|
||||
if (StaticVars.outputLevel == 0)
|
||||
println(System.out, "[" + time + "] " + str);
|
||||
println(System.out, "[" + time + "]" + str);
|
||||
else
|
||||
println(System.out, "[" + time + "] " + str);
|
||||
println(System.out, "[" + time + "]" + str);
|
||||
}
|
||||
}
|
||||
|
||||
@ -69,9 +69,9 @@ public class HardwareConsoleUtils implements it.cavallium.warppi.Platform.Consol
|
||||
if (StaticVars.outputLevel >= level) {
|
||||
final String time = getTimeString();
|
||||
if (StaticVars.outputLevel == 0)
|
||||
println(System.out, "[" + time + "][" + prefix + "] " + str);
|
||||
println(System.out, "[" + time + "][" + prefix + "]" + str);
|
||||
else
|
||||
println(System.out, "[" + time + "][" + prefix + "] " + str);
|
||||
println(System.out, "[" + time + "][" + prefix + "]" + str);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -47,9 +47,9 @@ public class TeaVMConsoleUtils implements it.cavallium.warppi.Platform.ConsoleUt
|
||||
if (StaticVars.outputLevel >= level) {
|
||||
final String time = getTimeString();
|
||||
if (StaticVars.outputLevel == 0)
|
||||
println(System.out, "[" + time + "] " + str);
|
||||
println(System.out, "[" + time + "]" + str);
|
||||
else
|
||||
println(System.out, "[" + time + "] " + str);
|
||||
println(System.out, "[" + time + "]" + str);
|
||||
}
|
||||
}
|
||||
|
||||
@ -67,9 +67,9 @@ public class TeaVMConsoleUtils implements it.cavallium.warppi.Platform.ConsoleUt
|
||||
if (StaticVars.outputLevel >= level) {
|
||||
final String time = getTimeString();
|
||||
if (StaticVars.outputLevel == 0)
|
||||
println(System.out, "[" + time + "][" + prefix + "] " + str);
|
||||
println(System.out, "[" + time + "][" + prefix + "]" + str);
|
||||
else
|
||||
println(System.out, "[" + time + "][" + prefix + "] " + str);
|
||||
println(System.out, "[" + time + "][" + prefix + "]" + str);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user