Lua Computer: collection of minor updates, none notable (read romapidoc)
Former-commit-id: 80e3f0d13c2dc5bcff0843e509f416e9314cd52e Former-commit-id: e7e35bfd23d70db84f568f0c5388f3a1d89222bc
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
@@ -15,13 +15,10 @@ class StateFontTester : BasicGameState() {
|
|||||||
val textToPrint = "Font printer 서체 인쇄기"
|
val textToPrint = "Font printer 서체 인쇄기"
|
||||||
|
|
||||||
lateinit var canvas: Graphics
|
lateinit var canvas: Graphics
|
||||||
lateinit var gameFont: Font
|
|
||||||
|
|
||||||
override fun init(gc: GameContainer, game: StateBasedGame) {
|
override fun init(gc: GameContainer, game: StateBasedGame) {
|
||||||
canvas = Graphics(1024, 1024)
|
canvas = Graphics(1024, 1024)
|
||||||
|
|
||||||
gameFont = GameFontWhite()
|
|
||||||
|
|
||||||
Terrarum.gameLocale = "fiFI"
|
Terrarum.gameLocale = "fiFI"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -30,7 +27,7 @@ class StateFontTester : BasicGameState() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun render(gc: GameContainer, game: StateBasedGame, g: Graphics) {
|
override fun render(gc: GameContainer, game: StateBasedGame, g: Graphics) {
|
||||||
g.font = gameFont
|
g.font = Terrarum.fontGame
|
||||||
|
|
||||||
val text = arrayOf(
|
val text = arrayOf(
|
||||||
Lang["APP_WARNING_HEALTH_AND_SAFETY"],
|
Lang["APP_WARNING_HEALTH_AND_SAFETY"],
|
||||||
@@ -46,6 +43,11 @@ class StateFontTester : BasicGameState() {
|
|||||||
for (i in 0..text.size - 1) {
|
for (i in 0..text.size - 1) {
|
||||||
g.drawString(text[i], 10f, 10f + (g.font.lineHeight * i))
|
g.drawString(text[i], 10f, 10f + (g.font.lineHeight * i))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
g.font = Terrarum.fontSmallNumbers
|
||||||
|
|
||||||
|
g.drawString("The true master needs but one channel", 0f, 64f)
|
||||||
|
g.drawString("Press a key to start", 0f, 64f + 16f)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getID(): Int = Terrarum.STATE_ID_TEST_FONT
|
override fun getID(): Int = Terrarum.STATE_ID_TEST_FONT
|
||||||
|
|||||||
@@ -19,8 +19,8 @@ import org.newdawn.slick.state.StateBasedGame
|
|||||||
*/
|
*/
|
||||||
class StateVTTest : BasicGameState() {
|
class StateVTTest : BasicGameState() {
|
||||||
|
|
||||||
// HiRes: 100x62, LoRes: 80x25
|
// HiRes: 100x64, LoRes: 80x25
|
||||||
val vt = SimpleTextTerminal(SimpleTextTerminal.ELECTRIC_BLUE, 80, 25, colour = false, hires = false)
|
val vt = SimpleTextTerminal(SimpleTextTerminal.GREEN, 80, 25, colour = false, hires = false)
|
||||||
val computerInside = BaseTerrarumComputer(vt)
|
val computerInside = BaseTerrarumComputer(vt)
|
||||||
|
|
||||||
val vtUI = Image(vt.displayW, vt.displayH)
|
val vtUI = Image(vt.displayW, vt.displayH)
|
||||||
|
|||||||
@@ -13,6 +13,9 @@ object Key {
|
|||||||
val SPACE = 57
|
val SPACE = 57
|
||||||
val CAPS_LOCK = 58
|
val CAPS_LOCK = 58
|
||||||
val L_CONTROL = 29
|
val L_CONTROL = 29
|
||||||
|
|
||||||
|
// same position keys
|
||||||
|
val L_ALT = 56
|
||||||
val L_COMMAND = 219 // Mac
|
val L_COMMAND = 219 // Mac
|
||||||
|
|
||||||
val DELETE = 211
|
val DELETE = 211
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
if term.isTeletype() then error("This is a teletype; cannot use CCAPI layer") end
|
if term.isTeletype() then error("This is a teletype; cannot use CCAPI layer") end
|
||||||
|
|
||||||
|
|
||||||
table.insert(_COMPUTER.loadedCLayer, "CCAPI")
|
table.insert(computer.loadedCLayer, "CCAPI")
|
||||||
|
|
||||||
|
|
||||||
local function intLog2(i)
|
local function intLog2(i)
|
||||||
@@ -34,7 +34,7 @@ _G.bit = {} -- CC's weird BIT API
|
|||||||
|
|
||||||
bit.blshift = function(n, bits) bit32.lshift(n, bits) end
|
bit.blshift = function(n, bits) bit32.lshift(n, bits) end
|
||||||
bit.brshift = function(n, bits) bit32.arshift(n, bits) end
|
bit.brshift = function(n, bits) bit32.arshift(n, bits) end
|
||||||
bit.blogic_rshift = function(n, bits) bit32.brshift(n, bits) end
|
bit.blogic_rshift = function(n, bits) bit32.rshift(n, bits) end
|
||||||
bit.bxor = function(m, n) bit32.bxor(m, n) end
|
bit.bxor = function(m, n) bit32.bxor(m, n) end
|
||||||
bit.bor = function(m, n) bit32.bor(m, n) end
|
bit.bor = function(m, n) bit32.bor(m, n) end
|
||||||
bit.band = function(m, n) bit32.band(m, n) end
|
bit.band = function(m, n) bit32.band(m, n) end
|
||||||
@@ -162,4 +162,4 @@ fs.run = function(p) fs.dofile(p) end
|
|||||||
-- DOWN AND OUT --
|
-- DOWN AND OUT --
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
if _COMPUTER.verbose then print("ComputerCraft compatibility layer successfully loaded.") end
|
if computer.verbose then print("ComputerCraft compatibility layer successfully loaded.") end
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
-- ALIASES --
|
-- ALIASES --
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
_G.io = {}
|
||||||
|
|
||||||
fs.dofile = function(p, ...)
|
fs.dofile = function(p, ...)
|
||||||
local f = fs.open(p, "r")
|
local f = fs.open(p, "r")
|
||||||
local s = f.readAll()
|
local s = f.readAll()
|
||||||
@@ -14,12 +16,8 @@ end
|
|||||||
|
|
||||||
_G.loadstring = _G.load
|
_G.loadstring = _G.load
|
||||||
|
|
||||||
_G.print = term.print
|
|
||||||
|
|
||||||
--_G.dofile = function(f) fs.dofile(f) end
|
--_G.dofile = function(f) fs.dofile(f) end
|
||||||
|
|
||||||
_G.boot = function() fs.dofile("/boot/efi") end
|
|
||||||
|
|
||||||
|
|
||||||
fs.fetchText = function(p)
|
fs.fetchText = function(p)
|
||||||
local file = fs.open(p, "r")
|
local file = fs.open(p, "r")
|
||||||
@@ -60,7 +58,7 @@ _G.__scanforline__ = function(echo) -- pass '1' to not echo; pass nothing to ech
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- use Keys API to identify the keycode
|
-- use Keys API to identify the keycode
|
||||||
_G.__scanforkey__ = function(echo) -- pass '1' to not echo; pass nothing to echo
|
--[[_G.__scanforkey__ = function(echo) -- pass '1' to not echo; pass nothing to echo
|
||||||
native.closeInputString()
|
native.closeInputString()
|
||||||
native.openInput(echo or 0)
|
native.openInput(echo or 0)
|
||||||
_G.__scanMode__ = "a_key"
|
_G.__scanMode__ = "a_key"
|
||||||
@@ -70,11 +68,12 @@ _G.__scanforkey__ = function(echo) -- pass '1' to not echo; pass nothing to echo
|
|||||||
until key
|
until key
|
||||||
-- input is closed when any key is hit. See above comments.
|
-- input is closed when any key is hit. See above comments.
|
||||||
return key
|
return key
|
||||||
end
|
end]] -- DELETED: use _G.input.isKeyDown(keycode)
|
||||||
|
|
||||||
|
input.readLine = _G.__scanforline__
|
||||||
|
|
||||||
io.read = _G.__scanforline__
|
io.read = _G.__scanforline__
|
||||||
|
|
||||||
|
|
||||||
-----------------
|
-----------------
|
||||||
-- PRINTSTREAM --
|
-- PRINTSTREAM --
|
||||||
-----------------
|
-----------------
|
||||||
@@ -82,7 +81,12 @@ io.read = _G.__scanforline__
|
|||||||
io.write = function(...)
|
io.write = function(...)
|
||||||
local args = {...}
|
local args = {...}
|
||||||
for _, v in ipairs(args) do
|
for _, v in ipairs(args) do
|
||||||
local s = tostring(v)
|
local s
|
||||||
|
if v == nil then
|
||||||
|
s = "nil"
|
||||||
|
else
|
||||||
|
s = tostring(v)
|
||||||
|
end
|
||||||
term.write(s)
|
term.write(s)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -111,7 +115,22 @@ end
|
|||||||
_G.shell = {}
|
_G.shell = {}
|
||||||
shell.status = shell.ok
|
shell.status = shell.ok
|
||||||
|
|
||||||
shell.run = function(p) fs.dofile(p) end
|
shell.run = function(path)
|
||||||
|
-- check for interpreter key "#!"
|
||||||
|
local f = fs.open(path, "r")
|
||||||
|
local s = ""
|
||||||
|
repeat
|
||||||
|
s = f.readLine()
|
||||||
|
if (s == nil) then return end -- empty file
|
||||||
|
until #s > 0
|
||||||
|
|
||||||
|
if s:sub(1,2) == "#!" then
|
||||||
|
local interpreter = s:sub(3)
|
||||||
|
fs.dofile(interpreter..".lua", path)
|
||||||
|
else
|
||||||
|
fs.dofile(path)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
shell.ok = 0
|
shell.ok = 0
|
||||||
@@ -167,123 +186,193 @@ end
|
|||||||
-- KEYS API --
|
-- KEYS API --
|
||||||
--------------
|
--------------
|
||||||
-- ComputerCraft compliant
|
-- ComputerCraft compliant
|
||||||
local keycodeDic = {
|
local keycodeNumToName = {
|
||||||
["30"] = "a",
|
["30"] = "a",
|
||||||
["48"] = "b",
|
["48"] = "b",
|
||||||
["46"] = "c",
|
["46"] = "c",
|
||||||
["32"] = "d",
|
["32"] = "d",
|
||||||
["18"] = "e",
|
["18"] = "e",
|
||||||
["33"] = "f",
|
["33"] = "f",
|
||||||
["34"] = "g",
|
["34"] = "g",
|
||||||
["35"] = "h",
|
["35"] = "h",
|
||||||
["23"] = "i",
|
["23"] = "i",
|
||||||
["36"] = "j",
|
["36"] = "j",
|
||||||
["37"] = "k",
|
["37"] = "k",
|
||||||
["38"] = "l",
|
["38"] = "l",
|
||||||
["50"] = "m",
|
["50"] = "m",
|
||||||
["49"] = "n",
|
["49"] = "n",
|
||||||
["24"] = "o",
|
["24"] = "o",
|
||||||
["25"] = "p",
|
["25"] = "p",
|
||||||
["16"] = "q",
|
["16"] = "q",
|
||||||
["19"] = "r",
|
["19"] = "r",
|
||||||
["31"] = "s",
|
["31"] = "s",
|
||||||
["20"] = "t",
|
["20"] = "t",
|
||||||
["22"] = "u",
|
["22"] = "u",
|
||||||
["47"] = "v",
|
["47"] = "v",
|
||||||
["17"] = "w",
|
["17"] = "w",
|
||||||
["45"] = "x",
|
["45"] = "x",
|
||||||
["21"] = "y",
|
["21"] = "y",
|
||||||
["44"] = "z",
|
["44"] = "z",
|
||||||
["2"] = "one",
|
["2"] = "one",
|
||||||
["3"] = "two",
|
["3"] = "two",
|
||||||
["4"] = "three",
|
["4"] = "three",
|
||||||
["5"] = "four",
|
["5"] = "four",
|
||||||
["6"] = "five",
|
["6"] = "five",
|
||||||
["7"] = "six",
|
["7"] = "six",
|
||||||
["8"] = "seven",
|
["8"] = "seven",
|
||||||
["9"] = "eight",
|
["9"] = "eight",
|
||||||
["10"] = "nine",
|
["10"] = "nine",
|
||||||
["11"] = "zero",
|
["11"] = "zero",
|
||||||
["12"] = "minus",
|
["12"] = "minus",
|
||||||
["13"] = "equals",
|
["13"] = "equals",
|
||||||
["14"] = "backspace",
|
["14"] = "backspace",
|
||||||
["15"] = "tab",
|
["15"] = "tab",
|
||||||
["26"] = "leftBracket",
|
["26"] = "leftBracket",
|
||||||
["27"] = "rightBracket",
|
["27"] = "rightBracket",
|
||||||
["28"] = "enter",
|
["28"] = "enter",
|
||||||
["29"] = "leftCtrl",
|
["29"] = "leftCtrl",
|
||||||
["39"] = "semiColon",
|
["39"] = "semiColon",
|
||||||
["40"] = "apostrophe",
|
["40"] = "apostrophe",
|
||||||
["41"] = "grave",
|
["41"] = "grave",
|
||||||
["42"] = "leftShift",
|
["42"] = "leftShift",
|
||||||
["43"] = "backslash",
|
["43"] = "backslash",
|
||||||
["51"] = "comma",
|
["51"] = "comma",
|
||||||
["52"] = "period",
|
["52"] = "period",
|
||||||
["53"] = "slash",
|
["53"] = "slash",
|
||||||
["54"] = "rightShift",
|
["54"] = "rightShift",
|
||||||
["55"] = "multiply",
|
["55"] = "multiply",
|
||||||
["56"] = "leftAlt",
|
["56"] = "leftAlt",
|
||||||
["57"] = "space",
|
["57"] = "space",
|
||||||
["58"] = "capsLock",
|
["58"] = "capsLock",
|
||||||
["59"] = "f1",
|
["59"] = "f1",
|
||||||
["60"] = "f2",
|
["60"] = "f2",
|
||||||
["61"] = "f3",
|
["61"] = "f3",
|
||||||
["62"] = "f4",
|
["62"] = "f4",
|
||||||
["63"] = "f5",
|
["63"] = "f5",
|
||||||
["64"] = "f6",
|
["64"] = "f6",
|
||||||
["65"] = "f7",
|
["65"] = "f7",
|
||||||
["66"] = "f8",
|
["66"] = "f8",
|
||||||
["67"] = "f9",
|
["67"] = "f9",
|
||||||
["68"] = "f10",
|
["68"] = "f10",
|
||||||
["69"] = "numLock",
|
["69"] = "numLock",
|
||||||
["70"] = "scollLock",
|
["70"] = "scollLock",
|
||||||
["71"] = "numPad7",
|
["87"] = "f11",
|
||||||
["72"] = "numPad8",
|
["88"] = "f12",
|
||||||
["73"] = "numPad9",
|
["89"] = "f13",
|
||||||
["74"] = "numPadSubtract",
|
["90"] = "f14",
|
||||||
["75"] = "numPad4",
|
["91"] = "f15",
|
||||||
["76"] = "numPad5",
|
["144"] = "cimcumflex",
|
||||||
["77"] = "numPad6",
|
["145"] = "at",
|
||||||
["78"] = "numPadAdd",
|
["146"] = "colon",
|
||||||
["79"] = "numPad1",
|
["147"] = "underscore",
|
||||||
["80"] = "numPad2",
|
["157"] = "rightCtrl",
|
||||||
["81"] = "numPad3",
|
["184"] = "rightAlt",
|
||||||
["82"] = "numPad0",
|
["197"] = "pause",
|
||||||
["83"] = "numPadDecimal",
|
["199"] = "home",
|
||||||
["87"] = "f11",
|
["200"] = "up",
|
||||||
["88"] = "f12",
|
["201"] = "pageUp",
|
||||||
["89"] = "f13",
|
["203"] = "left",
|
||||||
["90"] = "f14",
|
["208"] = "right",
|
||||||
["91"] = "f15",
|
["207"] = "end",
|
||||||
["-1"] = "kana",
|
["205"] = "down",
|
||||||
["-1"] = "convert",
|
["209"] = "pageDown",
|
||||||
["-1"] = "noconvert",
|
["210"] = "insert",
|
||||||
["-1"] = "yen",
|
["211"] = "delete",
|
||||||
["-1"] = "numPadEquals",
|
["219"] = "leftCommand"
|
||||||
["144"] = "cimcumflex",
|
|
||||||
["145"] = "at",
|
|
||||||
["146"] = "colon",
|
|
||||||
["147"] = "underscore",
|
|
||||||
["-1"] = "kanji",
|
|
||||||
["-1"] = "stop",
|
|
||||||
["-1"] = "ax",
|
|
||||||
["156"] = "numPadEnter",
|
|
||||||
["157"] = "rightCtrl",
|
|
||||||
["-1"] = "numPadComma",
|
|
||||||
["181"] = "numPadDivide",
|
|
||||||
["184"] = "rightAlt",
|
|
||||||
["197"] = "pause",
|
|
||||||
["199"] = "home",
|
|
||||||
["200"] = "up",
|
|
||||||
["201"] = "pageUp",
|
|
||||||
["203"] = "left",
|
|
||||||
["208"] = "right",
|
|
||||||
["207"] = "end",
|
|
||||||
["205"] = "down",
|
|
||||||
["209"] = "pageDown",
|
|
||||||
["210"] = "insert",
|
|
||||||
["211"] = "delete",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_G.keys = {}
|
_G.keys = {
|
||||||
_G.keys.getName = function(code) return keycodeDic[tostring(code)] end
|
["a"] = 30,
|
||||||
|
["b"] = 48,
|
||||||
|
["c"] = 46,
|
||||||
|
["d"] = 32,
|
||||||
|
["e"] = 18,
|
||||||
|
["f"] = 33,
|
||||||
|
["g"] = 34,
|
||||||
|
["h"] = 35,
|
||||||
|
["i"] = 23,
|
||||||
|
["j"] = 36,
|
||||||
|
["k"] = 37,
|
||||||
|
["l"] = 38,
|
||||||
|
["m"] = 50,
|
||||||
|
["n"] = 49,
|
||||||
|
["o"] = 24,
|
||||||
|
["p"] = 25,
|
||||||
|
["q"] = 16,
|
||||||
|
["r"] = 19,
|
||||||
|
["s"] = 31,
|
||||||
|
["t"] = 20,
|
||||||
|
["u"] = 22,
|
||||||
|
["v"] = 47,
|
||||||
|
["w"] = 17,
|
||||||
|
["x"] = 45,
|
||||||
|
["y"] = 21,
|
||||||
|
["z"] = 44,
|
||||||
|
["one"] = 2,
|
||||||
|
["two"] = 3,
|
||||||
|
["three"] = 4,
|
||||||
|
["four"] = 5,
|
||||||
|
["five"] = 6,
|
||||||
|
["six"] = 7,
|
||||||
|
["seven"] = 8,
|
||||||
|
["eight"] = 9,
|
||||||
|
["nine"] = 10,
|
||||||
|
["zero"] = 11,
|
||||||
|
["minus"] = 12,
|
||||||
|
["equals"] = 13,
|
||||||
|
["backspace"] = 14,
|
||||||
|
["tab"] = 15,
|
||||||
|
["leftBracket"] = 26,
|
||||||
|
["rightBracket"] = 27,
|
||||||
|
["enter"] = 28,
|
||||||
|
["leftCtrl"] = 29,
|
||||||
|
["semiColon"] = 39,
|
||||||
|
["apostrophe"] = 40,
|
||||||
|
["grave"] = 41,
|
||||||
|
["leftShift"] = 42,
|
||||||
|
["backslash"] = 43,
|
||||||
|
["comma"] = 51,
|
||||||
|
["period"] = 52,
|
||||||
|
["slash"] = 53,
|
||||||
|
["rightShift"] = 54,
|
||||||
|
["multiply"] = 55,
|
||||||
|
["leftAlt"] = 56,
|
||||||
|
["space"] = 57,
|
||||||
|
["capsLock"] = 58,
|
||||||
|
["f1"] = 59,
|
||||||
|
["f2"] = 60,
|
||||||
|
["f3"] = 61,
|
||||||
|
["f4"] = 62,
|
||||||
|
["f5"] = 63,
|
||||||
|
["f6"] = 64,
|
||||||
|
["f7"] = 65,
|
||||||
|
["f8"] = 66,
|
||||||
|
["f9"] = 67,
|
||||||
|
["f10"] = 68,
|
||||||
|
["numLock"] = 69,
|
||||||
|
["scollLock"] = 70,
|
||||||
|
["f11"] = 87,
|
||||||
|
["f12"] = 88,
|
||||||
|
["f13"] = 89,
|
||||||
|
["f14"] = 90,
|
||||||
|
["f15"] = 91,
|
||||||
|
["cimcumflex"] = 144,
|
||||||
|
["at"] = 145,
|
||||||
|
["colon"] = 146,
|
||||||
|
["underscore"] = 147,
|
||||||
|
["rightCtrl"] = 157,
|
||||||
|
["rightAlt"] = 184,
|
||||||
|
["pause"] = 197,
|
||||||
|
["home"] = 199,
|
||||||
|
["up"] = 200,
|
||||||
|
["pageUp"] = 201,
|
||||||
|
["left"] = 203,
|
||||||
|
["right"] = 208,
|
||||||
|
["end"] = 207,
|
||||||
|
["down"] = 205,
|
||||||
|
["pageDown"] = 209,
|
||||||
|
["insert"] = 210,
|
||||||
|
["delete"] = 211,
|
||||||
|
["leftCommand"] = 219
|
||||||
|
}
|
||||||
|
_G.keys.getName = function(code) return keycodeNumToName[tostring(code)] end
|
||||||
|
|||||||
@@ -2,19 +2,18 @@ package net.torvald.terrarum.virtualcomputer.computer
|
|||||||
|
|
||||||
import li.cil.repack.org.luaj.vm2.Globals
|
import li.cil.repack.org.luaj.vm2.Globals
|
||||||
import li.cil.repack.org.luaj.vm2.LuaError
|
import li.cil.repack.org.luaj.vm2.LuaError
|
||||||
|
import li.cil.repack.org.luaj.vm2.LuaTable
|
||||||
import li.cil.repack.org.luaj.vm2.LuaValue
|
import li.cil.repack.org.luaj.vm2.LuaValue
|
||||||
import li.cil.repack.org.luaj.vm2.lib.ZeroArgFunction
|
import li.cil.repack.org.luaj.vm2.lib.ZeroArgFunction
|
||||||
import li.cil.repack.org.luaj.vm2.lib.jse.JsePlatform
|
import li.cil.repack.org.luaj.vm2.lib.jse.JsePlatform
|
||||||
import net.torvald.terrarum.KVHashMap
|
import net.torvald.terrarum.KVHashMap
|
||||||
import net.torvald.terrarum.gameactors.ActorValue
|
import net.torvald.terrarum.gameactors.ActorValue
|
||||||
import net.torvald.terrarum.virtualcomputer.luaapi.Filesystem
|
import net.torvald.terrarum.virtualcomputer.luaapi.*
|
||||||
import net.torvald.terrarum.virtualcomputer.luaapi.HostAccessProvider
|
|
||||||
import net.torvald.terrarum.virtualcomputer.luaapi.Security
|
|
||||||
import net.torvald.terrarum.virtualcomputer.luaapi.Term
|
|
||||||
import net.torvald.terrarum.virtualcomputer.terminal.*
|
import net.torvald.terrarum.virtualcomputer.terminal.*
|
||||||
import net.torvald.terrarum.virtualcomputer.worldobject.ComputerPartsCodex
|
import net.torvald.terrarum.virtualcomputer.worldobject.ComputerPartsCodex
|
||||||
import net.torvald.terrarum.virtualcomputer.worldobject.FixtureComputerBase
|
import net.torvald.terrarum.virtualcomputer.worldobject.FixtureComputerBase
|
||||||
import org.newdawn.slick.GameContainer
|
import org.newdawn.slick.GameContainer
|
||||||
|
import org.newdawn.slick.Input
|
||||||
import java.io.*
|
import java.io.*
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -40,15 +39,14 @@ class BaseTerrarumComputer(val term: Teletype? = null) {
|
|||||||
|
|
||||||
val processorCycle: Int // number of Lua statement to process per tick (1/100 s)
|
val processorCycle: Int // number of Lua statement to process per tick (1/100 s)
|
||||||
get() = ComputerPartsCodex.getProcessorCycles(computerValue.getAsInt("processor") ?: 0)
|
get() = ComputerPartsCodex.getProcessorCycles(computerValue.getAsInt("processor") ?: 0)
|
||||||
val memSize: Int // max: 8 GB
|
val memSize: Int // in bytes; max: 8 GB
|
||||||
get() {
|
get() {
|
||||||
if (DEBUG_UNLIMITED_MEM) return 1.shl(30)// 1 GB
|
if (DEBUG_UNLIMITED_MEM) return 16.shl(20)// 16 MB
|
||||||
|
|
||||||
var size = 0
|
var size = 0
|
||||||
for (i in 0..3)
|
for (i in 0..3)
|
||||||
size += ComputerPartsCodex.getRamSize(computerValue.getAsInt("memSlot$i") ?: 0)
|
size += ComputerPartsCodex.getRamSize(computerValue.getAsInt("memSlot$i")!!)
|
||||||
|
|
||||||
return 16.shl(20)
|
|
||||||
return size
|
return size
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,6 +56,9 @@ class BaseTerrarumComputer(val term: Teletype? = null) {
|
|||||||
|
|
||||||
var isHalted = false
|
var isHalted = false
|
||||||
|
|
||||||
|
lateinit var input: Input
|
||||||
|
private set
|
||||||
|
|
||||||
init {
|
init {
|
||||||
computerValue["memslot0"] = 4864 // -1 indicates mem slot is empty
|
computerValue["memslot0"] = 4864 // -1 indicates mem slot is empty
|
||||||
computerValue["memslot1"] = -1 // put index of item here
|
computerValue["memslot1"] = -1 // put index of item here
|
||||||
@@ -83,34 +84,47 @@ class BaseTerrarumComputer(val term: Teletype? = null) {
|
|||||||
computerValue["boot"] = computerValue.getAsString("hda")!!
|
computerValue["boot"] = computerValue.getAsString("hda")!!
|
||||||
|
|
||||||
|
|
||||||
if (term != null) {
|
if (term != null) initSandbox(term)
|
||||||
termOut = TerminalPrintStream(term)
|
}
|
||||||
termErr = TerminalPrintStream(term)
|
|
||||||
termIn = TerminalInputStream(term)
|
|
||||||
|
|
||||||
luaJ_globals.STDOUT = termOut
|
fun initSandbox(term: Teletype) {
|
||||||
luaJ_globals.STDERR = termErr
|
termOut = TerminalPrintStream(term)
|
||||||
luaJ_globals.STDIN = termIn
|
termErr = TerminalPrintStream(term)
|
||||||
|
termIn = TerminalInputStream(term)
|
||||||
|
|
||||||
// load libraries
|
luaJ_globals.STDOUT = termOut
|
||||||
Term(luaJ_globals, term)
|
luaJ_globals.STDERR = termErr
|
||||||
Security(luaJ_globals)
|
luaJ_globals.STDIN = termIn
|
||||||
Filesystem(luaJ_globals, this)
|
|
||||||
HostAccessProvider(luaJ_globals, this)
|
// load libraries
|
||||||
}
|
Term(luaJ_globals, term)
|
||||||
|
Security(luaJ_globals)
|
||||||
|
Filesystem(luaJ_globals, this)
|
||||||
|
HostAccessProvider(luaJ_globals, this)
|
||||||
|
Input(luaJ_globals, this)
|
||||||
|
Http(luaJ_globals, this)
|
||||||
|
|
||||||
|
// secure the sandbox
|
||||||
|
luaJ_globals["io"] = LuaValue.NIL
|
||||||
|
// dubug is sandboxed in OpenComputers code
|
||||||
|
//val sethook = luaJ_globals["debug"]["sethook"]
|
||||||
|
//luaJ_globals["debug"] = LuaValue.NIL
|
||||||
|
|
||||||
// ROM BASIC
|
// ROM BASIC
|
||||||
val inputStream = javaClass.getResourceAsStream("/net/torvald/terrarum/virtualcomputer/assets/lua/BOOT.lua")
|
val inputStream = javaClass.getResourceAsStream("/net/torvald/terrarum/virtualcomputer/assets/lua/BOOT.lua")
|
||||||
runCommand(InputStreamReader(inputStream), "=boot")
|
runCommand(InputStreamReader(inputStream), "=boot")
|
||||||
|
|
||||||
// computer-related global functions
|
// computer-related global functions
|
||||||
luaJ_globals["getTotalMem"] = LuaFunGetTotalMem(this)
|
luaJ_globals["totalMemory"] = LuaFunGetTotalMem(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
var threadTimer = 0
|
var threadTimer = 0
|
||||||
val threadMaxTime = 2000
|
val threadMaxTime = 2000
|
||||||
|
|
||||||
fun update(gc: GameContainer, delta: Int) {
|
fun update(gc: GameContainer, delta: Int) {
|
||||||
|
input = gc.input
|
||||||
|
|
||||||
|
|
||||||
if (currentExecutionThread.state == Thread.State.TERMINATED)
|
if (currentExecutionThread.state == Thread.State.TERMINATED)
|
||||||
unsetThreadRun()
|
unsetThreadRun()
|
||||||
|
|
||||||
|
|||||||
@@ -456,6 +456,7 @@ internal class Filesystem(globals: Globals, computer: BaseTerrarumComputer) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** returns NO line separator! */
|
||||||
private class FileClassReadLine(val fr: FileReader) : ZeroArgFunction() {
|
private class FileClassReadLine(val fr: FileReader) : ZeroArgFunction() {
|
||||||
val scanner = Scanner(fr.readText()) // no closing; keep the scanner status persistent
|
val scanner = Scanner(fr.readText()) // no closing; keep the scanner status persistent
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,10 @@ internal class HostAccessProvider(globals: Globals, computer: BaseTerrarumComput
|
|||||||
|
|
||||||
class PrintLn(): OneArgFunction() {
|
class PrintLn(): OneArgFunction() {
|
||||||
override fun call(p0: LuaValue): LuaValue {
|
override fun call(p0: LuaValue): LuaValue {
|
||||||
println(p0.checkIBM437())
|
if (p0.isnumber())
|
||||||
|
println(p0.checkdouble())
|
||||||
|
else
|
||||||
|
println(p0.checkIBM437())
|
||||||
return LuaValue.NONE
|
return LuaValue.NONE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -91,7 +94,7 @@ internal class HostAccessProvider(globals: Globals, computer: BaseTerrarumComput
|
|||||||
class HaltComputer(val computer: BaseTerrarumComputer) : ZeroArgFunction() {
|
class HaltComputer(val computer: BaseTerrarumComputer) : ZeroArgFunction() {
|
||||||
override fun call() : LuaValue {
|
override fun call() : LuaValue {
|
||||||
computer.isHalted = true
|
computer.isHalted = true
|
||||||
computer.luaJ_globals.load("""print("system halted")""").call()
|
computer.luaJ_globals.load("""print(DC4.."system halted")""").call()
|
||||||
return LuaValue.NONE
|
return LuaValue.NONE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
12
src/net/torvald/terrarum/virtualcomputer/luaapi/Http.kt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
package net.torvald.terrarum.virtualcomputer.luaapi
|
||||||
|
|
||||||
|
import li.cil.repack.org.luaj.vm2.Globals
|
||||||
|
import net.torvald.terrarum.virtualcomputer.computer.BaseTerrarumComputer
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides internet access, if @param computer has internet card(s).
|
||||||
|
*
|
||||||
|
* Created by minjaesong on 16-09-24.
|
||||||
|
*/
|
||||||
|
internal class Http(globals: Globals, computer: BaseTerrarumComputer) {
|
||||||
|
}
|
||||||
48
src/net/torvald/terrarum/virtualcomputer/luaapi/Input.kt
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
package net.torvald.terrarum.virtualcomputer.luaapi
|
||||||
|
|
||||||
|
import li.cil.repack.org.luaj.vm2.Globals
|
||||||
|
import li.cil.repack.org.luaj.vm2.LuaTable
|
||||||
|
import li.cil.repack.org.luaj.vm2.LuaValue
|
||||||
|
import li.cil.repack.org.luaj.vm2.lib.OneArgFunction
|
||||||
|
import net.torvald.terrarum.gamecontroller.Key
|
||||||
|
import net.torvald.terrarum.virtualcomputer.computer.BaseTerrarumComputer
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by minjaesong on 16-09-25.
|
||||||
|
*/
|
||||||
|
class Input(globals: Globals, computer: BaseTerrarumComputer) {
|
||||||
|
|
||||||
|
init {
|
||||||
|
globals["input"] = LuaTable()
|
||||||
|
globals["input"]["isKeyDown"] = IsKeyDown(computer)
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
val keys_alt = intArrayOf(Key.L_ALT, Key.L_COMMAND)
|
||||||
|
val keys_caps = intArrayOf(Key.CAPS_LOCK, Key.BACKSPACE, Key.L_CONTROL)
|
||||||
|
}
|
||||||
|
|
||||||
|
class IsKeyDown(val computer: BaseTerrarumComputer) : OneArgFunction() {
|
||||||
|
override fun call(keyCode: LuaValue): LuaValue {
|
||||||
|
val key = keyCode.checkint()
|
||||||
|
|
||||||
|
// L_Alt and L_COMMAND are homogeneous
|
||||||
|
if (keys_alt.contains(key)) {
|
||||||
|
for (k in keys_alt) {
|
||||||
|
val down = computer.input.isKeyDown(k)
|
||||||
|
if (down) return LuaValue.valueOf(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Caps, Backspace, L_Control, for Colemak and HHKB
|
||||||
|
if (keys_caps.contains(key)) {
|
||||||
|
for (k in keys_caps) {
|
||||||
|
val down = computer.input.isKeyDown(k)
|
||||||
|
if (down) return LuaValue.valueOf(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return LuaValue.valueOf(computer.input.isKeyDown(keyCode.checkint()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,6 +9,8 @@ import org.apache.commons.codec.digest.DigestUtils
|
|||||||
import java.security.SecureRandom
|
import java.security.SecureRandom
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Hashes, CSPRNG, Base64
|
||||||
|
*
|
||||||
* Created by minjaesong on 16-09-15.
|
* Created by minjaesong on 16-09-15.
|
||||||
*/
|
*/
|
||||||
internal class Security(globals: Globals) {
|
internal class Security(globals: Globals) {
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ import net.torvald.terrarum.virtualcomputer.terminal.Terminal
|
|||||||
import java.nio.charset.Charset
|
import java.nio.charset.Charset
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* APIs must have some extent of compatibility with ComputerCraft by dan200
|
* Controls terminal as if it was a monitor
|
||||||
|
* (not sending control sequences but just drives it, as if it was not a terminal @ 9600 baud)
|
||||||
*
|
*
|
||||||
* Created by minjaesong on 16-09-12.
|
* Created by minjaesong on 16-09-12.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -91,8 +91,8 @@ open class SimpleTextTerminal(
|
|||||||
private val cursorBlinkLen = 250
|
private val cursorBlinkLen = 250
|
||||||
private var cursorBlinkOn = true
|
private var cursorBlinkOn = true
|
||||||
|
|
||||||
val phosphor = if (colour) WHITE else phosphorColour
|
val phosphor = if (colour) WHITE7500 else phosphorColour
|
||||||
open protected val colourScreen = if (colour) Color(4, 4, 4) else Color(19, 19, 19)
|
open protected val colourScreen = if (colour) Color(8, 8, 8) else Color(19, 19, 19)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -447,10 +447,11 @@ open class SimpleTextTerminal(
|
|||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
val AMBER = Color(255, 183, 0) // P3, 602 nm
|
val AMBER = Color(255, 183, 0) // P3, 602 nm
|
||||||
val IBM_GREEN = Color(74, 255, 0) // P39, 525 nm
|
val GREEN = Color(74, 255, 0) // P39, 525 nm
|
||||||
val WHITE = Color(228, 234, 255) // P4, 7 500 K
|
val WHITE = Color(204, 223, 255) // approximation of white CRT I own
|
||||||
|
val WHITE7500 = Color(0xe4eaff)
|
||||||
val ELECTRIC_BLUE = Color(0, 226, 255) // imaginary, 483 nm
|
val ELECTRIC_BLUE = Color(0, 226, 255) // imaginary, 483 nm
|
||||||
val RED = Color(250, 0, 0) // <= 645 nm
|
val RED = Color(250, 51, 0) // 632 nm
|
||||||
|
|
||||||
val ASCII_NUL = 0.toChar()
|
val ASCII_NUL = 0.toChar()
|
||||||
val ASCII_BEL = 7.toChar() // *BEEP!*
|
val ASCII_BEL = 7.toChar() // *BEEP!*
|
||||||
|
|||||||
@@ -14,14 +14,14 @@ object ComputerPartsCodex {
|
|||||||
|
|
||||||
init {
|
init {
|
||||||
// in kilobytes
|
// in kilobytes
|
||||||
rams.put(4864, 16.MiB())
|
rams.put(4864, 128.KiB())
|
||||||
rams.put(4865, 24.MiB())
|
rams.put(4865, 192.KiB())
|
||||||
rams.put(4866, 32.MiB())
|
rams.put(4866, 256.KiB())
|
||||||
rams.put(4867, 64.MiB())
|
rams.put(4867, 384.KiB())
|
||||||
rams.put(4868, 96.MiB())
|
rams.put(4868, 512.KiB())
|
||||||
rams.put(4869, 128.MiB())
|
rams.put(4869, 768.KiB())
|
||||||
rams.put(4870, 160.MiB())
|
rams.put(4870, 1024.KiB())
|
||||||
rams.put(4871, 256.MiB())
|
rams.put(4871, 2048.KiB())
|
||||||
|
|
||||||
processors.put(4872, 1000)
|
processors.put(4872, 1000)
|
||||||
processors.put(4873, 2000)
|
processors.put(4873, 2000)
|
||||||
@@ -51,6 +51,6 @@ object ComputerPartsCodex {
|
|||||||
|
|
||||||
private fun Int.MB() = this * 1000000 // 1 MB == 1 000 000 bytes, bitches!
|
private fun Int.MB() = this * 1000000 // 1 MB == 1 000 000 bytes, bitches!
|
||||||
private fun Int.kB() = this * 1000
|
private fun Int.kB() = this * 1000
|
||||||
private fun Int.KiB() = this.shr(10)
|
private fun Int.KiB() = this.shl(10)
|
||||||
private fun Int.MiB() = this.shr(20)
|
private fun Int.MiB() = this.shl(20)
|
||||||
}
|
}
|
||||||
BIN
work_files/2016-09-25T01:00:58.241.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
69
work_files/monotone.ans
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
[0;43;33m[0;153;102;51t[1;102;51;0tÛ[1;37m[0;102;51;0tOrder[0;43;33m[0;153;102;51t[1;102;51;0tÛ[40;37m [33m[1;102;51;0t°[32m[1;85;255;0t00[33m[1;102;51;0t°[1;37mC-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-4 [0;35m[1;255;0;153tF[1;33m[1;255;255;0t20[0;33m[1;102;51;0t°[37m[8C[1mOctave[0;33m[1;255;102;0t F1 F2 F3 [1m[1;255;255;0tF4 [0;33m[1;255;102;0tF5 F6 F7 F8 F9
|
||||||
|
[43m[0;102;51;0t[1;102;51;0t [40;37m [33m[1;102;51;0t°[37m01[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
[43;37m[0;153;102;51t 00 [1m02[0;43m[0;153;102;51t [40m [33m[1;102;51;0t°[37m02[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m01[0;33m[1;102;51;0t°[37m00[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m03[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [30m [35m[1;255;0;153tSPACE [37mStop/Rec. mode [35m[1;255;0;153tSHIFT [37mAssign patn to order
|
||||||
|
[33m[1;102;51;0t°[1;30m02[0;33m[1;102;51;0t°[37m01[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m04[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mF#5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tF[1;33m[1;255;255;0t08[0;33m[1;102;51;0t°[37m[5C[35m[1;255;0;153t [37mMove cursor[7C[35m[1;255;0;153tSHIFT [37mPrev/Next pattern
|
||||||
|
[33m[1;102;51;0t°[1;30m03[0;33m[1;102;51;0t°[37m03[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m05[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0tú[42m[0;0;102;0tú[0;33m[1;102;51;0t°[1;42;37m[0;0;102;0tF#5 [0;42;35m[0;0;102;0t[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[6C[35m[1;255;0;153t\ [37mNote off[13C[35m[1;255;0;153tTAB [37mNext channel
|
||||||
|
[33m[1;102;51;0t°[1;30m04[0;33m[1;102;51;0t°[37m04[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m06[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0tú[42m[0;0;102;0tú[0;33m[1;102;51;0t°[1;42;37m[0;0;102;0tA-5 [0;42;35m[0;0;102;0t[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m05[0;33m[1;102;51;0t°[37m05[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m07[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0tú[42m[0;0;102;0tú[0;33m[1;102;51;0t°[1;42;37m[0;0;102;0tG-5 [0;42;35m[0;0;102;0t[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mG-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m06[0;33m[1;102;51;0t°[37m06[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m08[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0tú[42m[0;0;102;0tú[0;33m[1;102;51;0t°[1;42;37m[0;0;102;0tC-6 [0;42;35m[0;0;102;0t[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [35m[1;255;0;153tALT [37mSelect block[7C[35m[1;255;0;153tPAGE [37mMove by 16 rows
|
||||||
|
[33m[1;102;51;0t°[1;30m07[0;33m[1;102;51;0t°[37m07[33m[1;102;51;0t°[37m [41m[0;221;0;0t [43m[0;153;102;51t09 [1múúú [0;43;35m[0;153;102;51t[1;255;0;153tú[1;33m[1;255;255;0tú[42m[0;0;102;0tú[0;43;33m[0;153;102;51t[1;102;51;0t [1;42;37m[0;0;102;0tE-6 [0;42;35m[0;0;102;0t[1;255;0;153tú[1;33m[1;255;255;0túú[0;43m[0;153;102;51t [1múúú [0;43;35m[0;153;102;51t[1;255;0;153tú[1;33m[1;255;255;0túú[0;43m[0;153;102;51t [1múúú [0;43;35m[0;153;102;51t[1;255;0;153tú[1;33m[1;255;255;0túú[0;41m[0;221;0;0t [40m [35m[1;255;0;153tALT C [37mCopy selection[5C[35m[1;255;0;153tHM/ED [37mMove to top/bottom
|
||||||
|
[33m[1;102;51;0t°[1;30m08[0;33m[1;102;51;0t°[37m08[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m0A[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37m=== [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [35m[1;255;0;153tALT V [37mPaste selection
|
||||||
|
[33m[1;102;51;0t°[1;30m09[0;33m[1;102;51;0t°[37m09[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m0B[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m0A[0;33m[1;102;51;0t°[37m0A[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m0C[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tF[1;33m[1;255;255;0t20[0;33m[1;102;51;0t°[37m[26C[30m [35m[1;255;0;153tENTER [37mPlay from beggining
|
||||||
|
[33m[1;102;51;0t°[1;30m0B[0;33m[1;102;51;0t°[37m0B[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m0D[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [35m[1;255;0;153tINS [37mInsert a patn [30m [45m[0;255;0;153t[40;35m[1;255;0;153tENTER [37mPlay this pattern
|
||||||
|
[33m[1;102;51;0t°[1;30m0C[0;33m[1;102;51;0t°[37m0C[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m0E[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [35m[1;255;0;153tDEL [37mDel. sel. patn
|
||||||
|
[33m[1;102;51;0t°[1;30m0D[0;33m[1;102;51;0t°[37m0D[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m0F[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [45;30m[0;255;0;153t[40;35m[1;255;0;153tINS [37mInsert order
|
||||||
|
[33m[1;102;51;0t°[1;30m0E[0;33m[1;102;51;0t°[37m0E[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;32m10[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mG#5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tF[1;33m[1;255;255;0t04[0;33m[1;102;51;0t°[37m [45;30m[0;255;0;153t[40;35m[1;255;0;153tDEL [37mDelete order[6C[35m[1;255;0;153tCTRL S[37m Save
|
||||||
|
[33m[1;102;51;0t°[1;30m0F[0;33m[1;102;51;0t°[37m0F[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m11[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD#6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[26C[35m[1;255;0;153tCTRL O[37m Load (discard this)
|
||||||
|
[33m[1;102;51;0t°[1;30m10[0;33m[1;102;51;0t°[37m10[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m12[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mG#6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD#6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[26C[35m[1;255;0;153tCTRL N [37mNew (discard this)
|
||||||
|
[33m[1;102;51;0t°[1;30m11[0;33m[1;102;51;0t°[37m11[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m13[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mF#6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m12[0;33m[1;102;51;0t°[37m12[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m14[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mA-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mF#6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m13[0;33m[1;102;51;0t°[37m13[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m15[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD-7 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mA-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m14[0;33m[1;102;51;0t°[37m14[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m16[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m15[0;33m[1;102;51;0t°[37m15[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m17[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37m=== [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m16[0;33m[1;102;51;0t°[37m16[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m18[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m17[0;33m[1;102;51;0t°[37m17[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m19[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m18[0;33m[1;102;51;0t°[37m18[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m1A[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m19[0;33m[1;102;51;0t°[37m19[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m1B[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tF[1;33m[1;255;255;0t20[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m1A[0;33m[1;102;51;0t°[37m1A[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m1C[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m1B[0;33m[1;102;51;0t°[37m1B[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m1D[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m1C[0;33m[1;102;51;0t°[37m1C[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m1E[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mG-3 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tF[1;33m[1;255;255;0t03[0;33m[1;102;51;0t°[37m[10C[30m [1;37mEffects
|
||||||
|
[0;33m[1;102;51;0t°[1;30m1D[0;33m[1;102;51;0t°[37m1D[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m1F[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mA-3 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m1E[0;33m[1;102;51;0t°[37m1E[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;32m20[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mB-3 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153t0[1;33m[1;255;255;0txy [0mArpeggio
|
||||||
|
[33m[1;102;51;0t°[1;30m1F[0;33m[1;102;51;0t°[37m1E[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m21[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30m20[0;33m[1;102;51;0t°[37m1E[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m22[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153t1[1;33m[1;255;255;0txx [0mPortamento up
|
||||||
|
[33m[1;102;51;0t°[1;30m21[0;33m[1;102;51;0t°[37m1F[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m23[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mE-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m24[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mF-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153t2[1;33m[1;255;255;0txx [0mPortamento down
|
||||||
|
[33m[1;102;51;0t°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m25[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mG-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m26[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mA-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153t3[1;33m[1;255;255;0txx [0mPortamento to note
|
||||||
|
[33m[1;102;51;0t°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m27[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mB-4 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m28[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153t4[1;33m[1;255;255;0txy [0mVibrato
|
||||||
|
[33m[1;102;51;0t°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m29[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m2A[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mE-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153tB[1;33m[1;255;255;0txx [0mJump to order
|
||||||
|
[33m[1;102;51;0t°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m2B[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mF-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m2C[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mG-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153tD[1;33m[1;255;255;0txx [0mPattern break
|
||||||
|
[33m[1;102;51;0t°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m2D[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mA-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m2E[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mB-5 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m[10C[35m[1;255;0;153tF[1;33m[1;255;255;0txx [0mSet tick speed
|
||||||
|
[33m[1;102;51;0t°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m2F[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mC-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;32m30[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mD-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m31[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mE-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m32[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mF-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ Þ[0;33m[1;102;51;0t±±±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m33[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mG-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±[5;30mÝ[35m[1;255;0;153t2[30mÞÝ[35m[1;255;0;153t3[30mÞ[0;33m[1;102;51;0t±±±[5;30mÝ[35m[1;255;0;153t5[30mÞÝ[35m[1;255;0;153t6[30mÞÝ[35m[1;255;0;153t7[30mÞ[0;33m[1;102;51;0t±±±[5;30mÝ[35m[1;255;0;153t9[30mÞÝ[35m[1;255;0;153t0[30mÞ[0;33m[1;102;51;0t±±±[5;30mÝ[35m[1;255;0;153t=[30mÞ[0;33m[1;102;51;0t±±±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m34[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mA-6 [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ Þ[0;33m[1;102;51;0t±±±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m35[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37mB-6 [0;35m[1;255;0;153tD[1;33m[1;255;255;0t00[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±[5;47;37mÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m36[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±[5;47;37mÝ[35m[1;255;0;153tQ[37mÞÝ[35m[1;255;0;153tW[37mÞÝ[35m[1;255;0;153tE[37mÞÝ[35m[1;255;0;153tR[37mÞÝ[35m[1;255;0;153tT[37mÞÝ[35m[1;255;0;153tY[37mÞÝ[35m[1;255;0;153tU[37mÞÝ[35m[1;255;0;153tI[37mÞÝ[35m[1;255;0;153tO[37mÞÝ[35m[1;255;0;153tP[37mÞÝ[35m[1;255;0;153t{[37mÞÝ[35m[1;255;0;153t}[37mÞ[0;33m[1;102;51;0t±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m37[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±[5;47;37mÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[1;37m38[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m39[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±±±±±±
|
||||||
|
°[1;30múú[0;33m[1;102;51;0t°[37múú[33m[1;102;51;0t°[37m [33m[1;102;51;0t°[37m3A[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±±[5;30mÝ[35m[1;255;0;153tS[30mÞÝ[35m[1;255;0;153tD[30mÞ[0;33m[1;102;51;0t±±±[5;30mÝ[35m[1;255;0;153tG[30mÞÝ[35m[1;255;0;153tH[30mÞÝ[35m[1;255;0;153tJ[30mÞ[0;33m[1;102;51;0t±±±[5;30mÝ[35m[1;255;0;153tL[30mÞÝ[35m[1;255;0;153t;[30mÞ[0;33m[1;102;51;0t±±±±±±±±
|
||||||
|
[43;30m[0;102;51;0t [40;37m [33m[1;102;51;0t°[37m3B[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±±±[5;30mÝ ÞÝ Þ[0;33m[1;102;51;0t±±±±±±±±
|
||||||
|
[37m[9C[33m[1;102;51;0t°[1;37m3C[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±[5;47;37mÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±±±±±±
|
||||||
|
[31m[1;221;0;0tRec[1;30mPlay[0m [33m[1;102;51;0t°[37m3D[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±[5;47;37mÝ[35m[1;255;0;153tZ[37mÞÝ[35m[1;255;0;153tX[37mÞÝ[35m[1;255;0;153tC[37mÞÝ[35m[1;255;0;153tV[37mÞÝ[35m[1;255;0;153tB[37mÞÝ[35m[1;255;0;153tN[37mÞÝ[35m[1;255;0;153tM[37mÞÝ[35m[1;255;0;153t,[37mÞÝ[35m[1;255;0;153t.[37mÞÝ[35m[1;255;0;153t/[37mÞ[0;33m[1;102;51;0t±[1;43;37m[0;102;51;0tOct[0;33m[1;102;51;0t±±
|
||||||
|
[37mTrcks [42;32m[0;0;102;0t[1;85;255;0t4[40;37m [33m[1;102;51;0t°[37m3E[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[30m [33m[1;102;51;0t±±[5;47;37mÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ ÞÝ Þ[0;33m[1;102;51;0t±[43m[0;102;51;0t [1;37m-1[0;33m[1;102;51;0t±±
|
||||||
|
[37mTick [42;32m[0;0;102;0t[1;85;255;0t08[40;37m [33m[1;102;51;0t°[37m3F[33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[1;37múúú [0;35m[1;255;0;153tú[1;33m[1;255;255;0túú[0;33m[1;102;51;0t°[37m [33m[1;102;51;0t±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
|
||||||
|
[1;47;37mÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ[0m
|
||||||
|
[1;30mRecPlay[0m [1;30mRec[0;32m[1;85;255;0tPlay
|
||||||
|
[37mTrcks [42;32m[0;0;102;0t[1;85;255;0t4[40;37m Trcks [42;32m[0;0;102;0t[1;85;255;0t4[40;37m Editable
|
||||||
|
Tick [42;32m[0;0;102;0t[1;85;255;0t08[40;37m Tick [42;32m[0;0;102;0t[1;85;255;0t08[40;37m [35m[1;255;0;153tF[1;33m[1;255;255;0txx[0m eff
|
||||||
|
SAUCE00 20160924—~ | ||||||