Skip to content

Commit

Permalink
Add Train Simulator app
Browse files Browse the repository at this point in the history
  • Loading branch information
blinry committed Jul 13, 2023
1 parent 5cb09b6 commit 803954b
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions octopus/lib/octopus/apps/train.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
defmodule Octopus.Apps.Train do
use Octopus.App

alias Octopus.{Canvas, Image}
alias Octopus.Protobuf.InputEvent

@landscape Image.list_images() |> hd()
@fps 60

defmodule State do
defstruct [:canvas, :time, :x, :acceleration, :speed]
end

def name(), do: "Train Simulator"

def init(_args) do
canvas = Image.load(@landscape)

:timer.send_interval(trunc(1000 / @fps), :tick)

{:ok, %State{canvas: canvas, time: 0, x: 0, acceleration: 0, speed: 0}}
end

def add_window_corners(canvas) do
window_locations = for x <- 0..9*(8+16)//(8+16), do: {x, 0}

Enum.reduce(window_locations, canvas, fn {x, y}, canvas ->
canvas
|> Canvas.put_pixel({x, y}, [0, 0, 0])
|> Canvas.put_pixel({x+7, y}, [0, 0, 0])
|> Canvas.put_pixel({x, y+7}, [0, 0, 0])
|> Canvas.put_pixel({x+7, y+7}, [0, 0, 0])
end)
end

def handle_info(:tick, %State{} = state) do
canvas2 = state.canvas |> Canvas.translate({trunc(state.x), 0}, true)

canvas2
|> add_window_corners()
|> Canvas.to_frame(drop: true)
|> send_frame()

speed = state.speed + state.acceleration/@fps
speed = min(10, max(-10, speed)) # Limit speed
speed = speed*(1/(1+(0.1/@fps))) # Apply friction

{:noreply, %State{state | time: state.time + 1/@fps, speed: speed, x: state.x + speed}}
end

def handle_input(%InputEvent{type: :AXIS_X_1, value: value}, state) do
state = %State{state | acceleration: -0.1*value}
{:noreply, state}
end

def handle_input(%InputEvent{type: _, value: _}, state) do
{:noreply, state}
end
end
Binary file added octopus/priv/images/landscape.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 803954b

Please sign in to comment.