Terminal Matrix Example

Terminal Matrix Example Visualization

How to use this example

1. Install The CLI
2. Copy code below to file named “main”
3. Run this script in your command-line:

the compile main && ./a.out

Code

const SPACE_SIZE := [3050]
const LINE_SIZE := [550]
enum Pixel {
  Blank,
  Head,
  Body,
  Tail
}
obj App {
  hint
  wint
  moveSpeedu64
  refreshRateu64
  mut bufchar[][]
  mut dataPixel[][]
  mut lastMoveu64
  mut lastTicku64
  fn clear (selfref Self) {
    print("\033[" + self.h.str() + "A"terminator"")
  }
  fn extendLine (mut selfref Selflineint) {
    spaceLen := random_randomInt(SPACE_SIZE[0], SPACE_SIZE[1])
    lineLen := random_randomInt(LINE_SIZE[0], LINE_SIZE[1])
    loop i := 0i < spaceLeni++ {
      self.data[line].push(.Blank)
    }
    self.data[line].push(.Head)
    loop i := 0i < lineLen - 2i++ {
      self.data[line].push(.Body)
    }
    self.data[line].push(.Tail)
  }
  fn hideCursor () {
    print("\033[?25l"terminator"")
  }
  fn move (mut selfref Self) {
    loop i := self.data.len - 1i >= 0i-- {
      self.data[i].remove(0)
    }
  }
  fn rand () char {
    return random_randomInt(0x210x7E)
  }
  fn render (selfref Self) {
    mut resultstr[]
    loop i := self.h - 1i >= 0i-- {
      loop j := 0j < self.wj++ {
        bufItem := self.buf[j][i].str()
        dataItem := self.data[j][i]
        mut val := ""
        if dataItem == .Head {
          val = "\033[0;37m" + bufItem + "\033[0m"
        } elif dataItem == .Body || dataItem == .Tail {
          val = "\033[0;32m" + bufItem + "\033[0m"
        } else {
          val = " "
        }
        result.push(val)
      }
      result.push(os_EOL)
    }
    print(result.join(""), terminator"")
  }
  fn restoreScreen () {
    print("\033[1;1H\033[2J"terminator"")
  }
  fn shouldMove (selfref Selfbool {
    return self.lastMove + self.moveSpeed <= date_now()
  }
  fn showCursor () {
    print("\033[?25h"terminator"")
  }
  fn tick (mut selfref Self) {
    now := date_now()
    if self.lastTick + self.refreshRate > now {
      deltaint = self.lastTick + self.refreshRate - now
      thread_sleep(delta)
    }
    self.lastTick = date_now()
  }
  fn update (mut selfref Self) {
    if self.shouldMove() {
      self.move()
      self.lastMove = date_now()
      loop i := 0i < self.wi++ {
        loop j := 0j < self.h - 1j++ {
          if self.data[i][j] == .Tail {
            self.buf[i][j + 1] = self.rand()
          }
        }
      }
    }
    loop i := 0i < self.wi++ {
      if self.data[i].len <= self.h {
        self.extendLine(i)
      }
    }
  }
}
fn App_init () App {
  terminalSize := process_runSync("stty size").str().trim().split(" ")
  mut app := App{
    hterminalSize[0].toInt() - 1,
    wterminalSize[1].toInt(),
    moveSpeed25,
    refreshRate1000 / 30
  }
  app.hideCursor()
  mut bufLinechar[]
  mut dataLinePixel[]
  loop i := 0i <= app.hi++ {
    bufLine.push('\0')
    dataLine.push(.Blank)
  }
  loop i := 0i < app.wi++ {
    app.buf.push(bufLine)
    app.data.push(dataLine)
  }
  loop i := 0i < app.wi++ {
    loop j := 0j <= app.hj++ {
      app.buf[i][j] = app.rand()
    }
  }
  return app
}
fn App_deinit (mut appref App) {
  app.showCursor()
  app.restoreScreen()
}
main {
  mut app := App_init()
  loop i := 0i < 3600i++ {
    app.clear()
    app.render()
    app.tick()
    app.update()
  }
  App_deinit(ref app)
}