aboutsummaryrefslogtreecommitdiff
path: root/go/utils
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2023-02-25 23:08:47 +0100
committerFlorian Fischer <florian.fischer@muhq.space>2025-08-20 15:57:06 +0200
commit3d36d1d0254b8aeecc889a2a49cbcced458cbe9c (patch)
tree38dd0851d8eaa6535d05b97f29f65fc35655a5ef /go/utils
parent19fb1a7e5c5883f49e944b6499fa1ced207a3e39 (diff)
downloadmuhqs-game-3d36d1d0254b8aeecc889a2a49cbcced458cbe9c.tar.gz
muhqs-game-3d36d1d0254b8aeecc889a2a49cbcced458cbe9c.zip
intermediate commit
* Implement move artifact action * Fix widget update memory leak * update the highlights not during on each frame * do not update the unchanged label of a button * Allow to exit the game by pressing 'q' * Implement some cards from the magic set * Improve permanent formatting * Some tweaks to UnitAI code
Diffstat (limited to 'go/utils')
-rw-r--r--go/utils/slices.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/go/utils/slices.go b/go/utils/slices.go
index 3cc38c1c..eb02f782 100644
--- a/go/utils/slices.go
+++ b/go/utils/slices.go
@@ -15,3 +15,16 @@ func InterfaceSliceToTypedSlice[T any](s []interface{}) []T {
}
return ts
}
+
+func RemoveFromUnorderedSlice[T comparable](s []T, o T) []T {
+ for i, t := range s {
+ if t != o {
+ continue
+ }
+
+ s[i] = s[len(s) - 1]
+ return s[:len(s) - 1]
+ }
+
+ return s
+}