Shows progress and also added a loop flag so that it can go around and around

This commit is contained in:
2025-10-10 23:22:55 +01:00
parent 5f44960260
commit 9d3e9942d7
5 changed files with 122 additions and 39 deletions
+5 -1
View File
@@ -1,6 +1,7 @@
package cmd
import (
"context"
"fmt"
"github.com/ESilva15/BeamNGMockOg/mockserver"
@@ -12,8 +13,10 @@ func replayAction(cmd *cobra.Command, args []string) {
inputFile, _ := cmd.Flags().GetString("input")
address, _ := cmd.Flags().GetString("address")
port, _ := cmd.Flags().GetInt("port")
loop, _ := cmd.Flags().GetBool("loop")
if err := mockserver.Replay(address, port, inputFile); err != nil {
ctx := context.Background()
if err := mockserver.Replay(ctx, address, port, loop, inputFile); err != nil {
fmt.Printf("Something went wrong while playing the file: %v", err)
}
}
@@ -31,4 +34,5 @@ func init() {
rootCmd.AddCommand(replayCmd)
replayCmd.PersistentFlags().StringP("input", "i", "nofile.bin", "input file for serving")
replayCmd.PersistentFlags().BoolP("loop", "l", false, "loop replay after finishing")
}