From 2889dea36fee0491ebf9df82bd2611f26b57f168 Mon Sep 17 00:00:00 2001 From: Emile Date: Sat, 22 Feb 2020 16:56:26 +0100 Subject: rename --- src/r2pipe.go | 87 ----------------------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 src/r2pipe.go (limited to 'src/r2pipe.go') diff --git a/src/r2pipe.go b/src/r2pipe.go deleted file mode 100644 index a672567..0000000 --- a/src/r2pipe.go +++ /dev/null @@ -1,87 +0,0 @@ -package main - -import ( - "fmt" - "log" - "time" -) - -var ( - verbose *bool -) - -func main() { - - log.Println("---") - log.Println("[i] Parse the config") - config := parseConfig() - - // build the bots - log.Println("---") - log.Println("[i] Build the bots") - - for i := 0; i < 2; i++ { - bot := buildBot(config, "bots/warrior.asm") - config.Bots = append(config.Bots, bot) - } - // bot2 := buildBot(config, "bots/warrior.asm") - // config.Bots = append(config.Bots, bot2) - // bot3 := buildBot(config, "bots/warrior.asm") - // config.Bots = append(config.Bots, bot3) - - // initialize the arena - log.Println("---") - log.Println("[i] Initialize the Arena") - r2p := initArena(config) - - randomOffsets := getRandomOffsets(config) - - // place each bot in the arena - log.Println("---") - log.Println("[i] Place the bots") - for bot := 0; bot < len(config.Bots); bot++ { - // Place the bot in the arena - log.Printf("[i] Placing bot %d", bot) - address := randomOffsets[bot] - placeBot(r2p, config.Bots[bot], address) - - // define the instruction point and the stack pointer - log.Printf("[i] setting up the PC and SP for bot %d", bot) - _ = r2cmd(r2p, fmt.Sprintf("aer PC=%d", address)) - _ = r2cmd(r2p, fmt.Sprintf("aer SP=SP+%d", address)) - - // print the instruction point and the stack pointer - botStackPointer := r2cmd(r2p, "aerR~esp[2]") - log.Printf("[i] bot %d esp = %s", bot, botStackPointer) - botInstructionPointer := r2cmd(r2p, "aerR~eip[2]") - log.Printf("[i] bot %d eip = %s", bot, botInstructionPointer) - } - - // handle errors in esil - _ = r2cmd(r2p, "e cmd.esil.todo=f theend=1") - _ = r2cmd(r2p, "e cmd.esil.trap=f theend=1") - _ = r2cmd(r2p, "e cmd.esil.intr=f theend=1") - _ = r2cmd(r2p, "e cmd.esil.ioer=f theend=1") - _ = r2cmd(r2p, "f theend=0") - - fmt.Println(r2cmd(r2p, fmt.Sprintf("b %d", config.Memsize))) - - // start the competition - i := 0 - for true { - - // clear the screen - registers := stepIn(r2p) - - // Print the users screen - fmt.Println(user(r2p, i, registers, config)) - - // switch players - i = switchPlayer(i, config) - - // sleep - time.Sleep(2 * time.Second) - } - - r2p.Close() -} -- cgit 1.4.1