Created
February 2, 2025 08:22
-
-
Save udzura/7bcc7f758010b5ddcff7ad6236e64314 to your computer and use it in GitHub Desktop.
mruby/edge example for wasmbots: https://shaneliesegang.com/projects/wasmbots/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def clientInitialize: () -> void | |
def setup: (Integer) -> SharedMemory | |
def receiveGameParams: (Integer) -> bool | |
def tick: (Integer) -> void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def shutdown: () -> void | |
def logFunction: (Integer, String) -> void | |
def getRandomInt: (Integer, Integer) -> Integer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$memory = nil | |
$countup = 0 | |
LOGLEVEL_INFO = 2 | |
LOGLEVEL_ERROR = 0 | |
# pub enum WasmBotsError { | |
# EndOfFile, | |
# InvalidData, | |
# EndOfMessageList, | |
# } | |
ERROR_EOF = 0 | |
ERROR_INVALID = 1 | |
ERROR_END_OF_MESSAGE_LIST = 2 | |
# pub enum MessageType { | |
# _Error, | |
# InitialParameters, | |
# PresentCircumstances, | |
# Wait, | |
# Resign, | |
# MoveTo, | |
# Open, | |
# Close, | |
# } | |
MESSAGE_TYPE_ERROR = 0 | |
MESSAGE_TYPE_INITIAL_PARAMETERS = 1 | |
MESSAGE_TYPE_PRESENT_CIRCUMSTANCES = 2 | |
# 3 ? | |
MESSAGE_TYPE_WAIT = 4 | |
MESSAGE_TYPE_RESIGN = 5 | |
MESSAGE_TYPE_MOVE_TO = 6 | |
MESSAGE_TYPE_OPEN = 7 | |
MESSAGE_TYPE_CLOSE = 8 | |
# pub enum MoveResult { | |
# Succeeded = 0, | |
# Failed = 1, | |
# Invalid = 2, | |
# Error = 3, | |
# } | |
MOVE_RESULT_SUCCEEDED = 0 | |
MOVE_RESULT_FAILED = 1 | |
MOVE_RESULT_INVALID = 2 | |
MOVE_RESULT_ERROR = 3 | |
# pub enum TileType { | |
# Void = 0, | |
# Floor = 1, | |
# OpenDoor = 2, | |
# ClosedDoor = 3, | |
# Wall = 4, | |
# } | |
TILE_TYPE_VOID = 0 | |
TILE_TYPE_FLOOR = 1 | |
TILE_TYPE_OPEN_DOOR = 2 | |
TILE_TYPE_CLOSED_DOOR = 3 | |
TILE_TYPE_WALL = 4 | |
# pub enum Direction { | |
# North = 0, | |
# Northeast = 1, | |
# East = 2, | |
# Southeast = 3, | |
# South = 4, | |
# Southwest = 5, | |
# West = 6, | |
# Northwest = 7, | |
# } | |
DIRECTION_NORTH = 0 | |
DIRECTION_NORTHEAST = 1 | |
DIRECTION_EAST = 2 | |
DIRECTION_SOUTHEAST = 3 | |
DIRECTION_SOUTH = 4 | |
DIRECTION_SOUTHWEST = 5 | |
DIRECTION_WEST = 6 | |
DIRECTION_NORTHWEST = 7 | |
def clientInitialize | |
logFunction(LOGLEVEL_INFO, "Hello, world! This is made by #{RUBY_ENGINE}") | |
end | |
def setup(requested_size) | |
logFunction(LOGLEVEL_INFO, "received setup with size: #{requested_size}") | |
$memory = SharedMemory.new(requested_size) | |
name = "mruby/edge wasmbot" | |
$memory[0..17] = name | |
# $memory[18..25] = "\0" * 8 | |
$memory[26..27] = [0].pack("S") | |
$memory[28..29] = [0].pack("S") | |
$memory[30..31] = [1].pack("S") | |
$memory | |
end | |
def receiveGameParams(offset) | |
logFunction(LOGLEVEL_INFO, "received parameters with offset: #{offset}") | |
param = $memory[offset..(offset+10)].unpack("S S S S C C C") | |
logFunction(LOGLEVEL_INFO, "param version: #{param[0]}") | |
logFunction(LOGLEVEL_INFO, "param engine version: #{param[1]}.#{param[2]}.#{param[3]}") | |
logFunction(LOGLEVEL_INFO, "param diagonal_movement: #{param[4]}") | |
logFunction(LOGLEVEL_INFO, "param player_stride: #{param[5]}") | |
logFunction(LOGLEVEL_INFO, "param player_open_reach: #{param[6]}") | |
true | |
end | |
def tick(offset) | |
logFunction(LOGLEVEL_INFO, "received tick with offset: #{offset}") | |
logFunction(LOGLEVEL_INFO, "countup: #{$countup}") | |
param_pre = $memory[offset..(offset+8)].unpack("I C S S") | |
logFunction(LOGLEVEL_INFO, "last_tick_duration: #{param_pre[0]}") | |
logFunction(LOGLEVEL_INFO, "last_move_result: #{param_pre[1]}") | |
logFunction(LOGLEVEL_INFO, "hit_points: #{param_pre[2]}") | |
surroundings_len = param_pre[3] | |
logFunction(LOGLEVEL_INFO, "surroundings_len: #{surroundings_len}") | |
$surroundings = [] | |
$cursor = 9 | |
$offset = offset | |
#surroundings_len.times do |i| | |
# logFunction(LOGLEVEL_INFO, "Integer#times: #{i}") | |
#end | |
#surroundings_len.times do |i| | |
# logFunction(LOGLEVEL_INFO, "getting offset: #{$cursor}") | |
# logFunction(LOGLEVEL_INFO, "getting offset: #{$offset}") | |
# tile = $memory[($offset+$cursor)..($offset+$cursor)].unpack("C") | |
# logFunction(LOGLEVEL_INFO, "got tile: #{tile}") | |
# $cursor += 1 | |
# $surroundings.push tile | |
#end | |
#surroundings_radius = $memory[(offset+9+surroundings_len)..(offset+9+surroundings_len)].unpack("C") | |
#logFunction(LOGLEVEL_INFO, "surroundings_radius: #{surroundings_radius}") | |
if $countup < 32 | |
# wait message | |
# $memory[0..0] = [MESSAGE_TYPE_WAIT].pack("C") | |
# move message | |
direction = if $countup % 4 == 0 | |
DIRECTION_NORTH | |
elsif $countup % 4 == 1 | |
DIRECTION_EAST | |
elsif $countup % 4 == 2 | |
DIRECTION_SOUTH | |
elsif $countup % 4 == 3 | |
DIRECTION_WEST | |
end | |
logFunction(LOGLEVEL_INFO, "direction: #{direction}") | |
$memory[0..2] = [MESSAGE_TYPE_MOVE_TO, direction, 1].pack("C C C") | |
$countup += 1 | |
else | |
logFunction(LOGLEVEL_INFO, "exitting: countup = #{$countup}") | |
# resign message | |
$memory[0..0] = [MESSAGE_TYPE_RESIGN].pack("C") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment