diff options
author | Emile <git@emile.space> | 2023-04-09 00:37:54 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2023-04-09 00:37:54 +0200 |
commit | 87142c0cb5f42d877327c357497a5be6f3c5dbd0 (patch) | |
tree | e4b2094315dc16fe680ad0a15587bb0671dea636 /src/structs.go | |
parent | 907f5bc763959c3cc2196329a600a8afedebac5a (diff) |
Should work, lol
Diffstat (limited to 'src/structs.go')
-rw-r--r-- | src/structs.go | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/src/structs.go b/src/structs.go deleted file mode 100644 index c0cddc2..0000000 --- a/src/structs.go +++ /dev/null @@ -1,49 +0,0 @@ -package main - -import "time" - -// Config defines the meta config -type Config struct { - - // Arch defines the architecture the battle should run in - Arch string - - // Bits defines the bitness - Bits int - - // Memsize defines the arena size - Memsize int - - // MaxProgSize defines the maximal bot size - MaxProgSize int - - // Bots defines a list of bots to take part in the battle - Bots []Bot - - // AmountOfBots defines the amount of bots taking part in the tournament - AmountOfBots int - - // RandomOffsets defines the offset in memory where the bots should be placed - RandomOffsets []int - - // GameRoundTime defines the length of a gameround - GameRoundDuration time.Duration -} - -// Bot defines a bot -type Bot struct { - - // Path defines the path to the source of the bot - Path string - - // Source defines the source of the bot after being compiled with rasm2 - Source string - - // Addr defines the initial address the bot is placed at - Addr int - - // Regs defines the state of the registers of the bot - // It is used to store the registers after each round and restore them in the - // next round when the bot's turn has come - Regs string -} |