mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 19:14:05 +09:00
Rectified heretic YY-MM-DD to standard YYYY-MM-DD
This commit is contained in:
@@ -4,7 +4,7 @@ package net.torvald.terrarum.virtualcomputer.terminal
|
||||
/**
|
||||
* Default text terminal.
|
||||
*
|
||||
* Created by minjaesong on 16-09-07.
|
||||
* Created by minjaesong on 2016-09-07.
|
||||
*/
|
||||
/*open class SimpleTextTerminal(
|
||||
phosphorColour: Color, override val width: Int, override val height: Int, private val host: TerrarumComputer,
|
||||
|
||||
@@ -3,7 +3,7 @@ package net.torvald.terrarum.virtualcomputer.terminal
|
||||
import com.badlogic.gdx.graphics.g2d.SpriteBatch
|
||||
|
||||
/**
|
||||
* Created by minjaesong on 16-09-14.
|
||||
* Created by minjaesong on 2016-09-14.
|
||||
*/
|
||||
interface Teletype {
|
||||
val width: Int
|
||||
|
||||
@@ -6,7 +6,7 @@ import net.torvald.terrarum.blendNormal
|
||||
import java.util.*
|
||||
|
||||
/**
|
||||
* Created by minjaesong on 16-09-15.
|
||||
* Created by minjaesong on 2016-09-15.
|
||||
*/
|
||||
/*class TeletypeTerminal : Teletype {
|
||||
override val width = 40
|
||||
|
||||
@@ -11,7 +11,7 @@ import net.torvald.terrarum.gameactors.Second
|
||||
*
|
||||
* Background color is fixed; text color is variable
|
||||
*
|
||||
* Created by minjaesong on 16-09-07.
|
||||
* Created by minjaesong on 2016-09-07.
|
||||
*/
|
||||
interface Terminal : Teletype {
|
||||
override val width: Int
|
||||
|
||||
@@ -4,7 +4,7 @@ import net.torvald.terrarum.virtualcomputer.computer.TerrarumComputer
|
||||
import java.io.InputStream
|
||||
|
||||
/**
|
||||
* Created by minjaesong on 16-09-10.
|
||||
* Created by minjaesong on 2016-09-10.
|
||||
*/
|
||||
class TerminalInputStream(val host: TerrarumComputer) : InputStream() {
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ import java.io.OutputStream
|
||||
import java.io.PrintStream
|
||||
|
||||
/**
|
||||
* Created by minjaesong on 16-09-10.
|
||||
* Created by minjaesong on 2016-09-10.
|
||||
*/
|
||||
class TerminalPrintStream(val host: TerrarumComputer) : PrintStream(TerminalOutputStream(host))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user