From 133975b5a2ceca273182829f2f11042a5276c2f0 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Sat, 16 Nov 2019 21:17:48 -0800 Subject: Tabs -> spaces everywhere --- Source/Randomizer.h | 68 ++++++++++++++++++++++++++--------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'Source/Randomizer.h') diff --git a/Source/Randomizer.h b/Source/Randomizer.h index 87f1f59..673468c 100644 --- a/Source/Randomizer.h +++ b/Source/Randomizer.h @@ -5,45 +5,45 @@ class Randomizer { public: Randomizer(const std::shared_ptr& memory); - void Randomize(); - void RandomizeChallenge(); + void Randomize(); + void RandomizeChallenge(); - void AdjustSpeed(); - void RandomizeLasers(); - void PreventSnipes(); + void AdjustSpeed(); + void RandomizeLasers(); + void PreventSnipes(); - enum SWAP { - NONE = 0, - TARGETS = 1, - LINES = 2, - AUDIO_NAMES = 4, - COLORS = 8, - }; + enum SWAP { + NONE = 0, + TARGETS = 1, + LINES = 2, + AUDIO_NAMES = 4, + COLORS = 8, + }; private: - int _lastRandomizedFrame = 1 << 30; - void RandomizeTutorial(); - void RandomizeSymmetry(); - void RandomizeDesert(); - void RandomizeQuarry(); - void RandomizeTreehouse(); - void RandomizeKeep(); - void RandomizeShadows(); - void RandomizeTown(); - void RandomizeMonastery(); - void RandomizeBunker(); - void RandomizeJungle(); - void RandomizeSwamp(); - void RandomizeMountain(); - void RandomizeAudioLogs(); + int _lastRandomizedFrame = 1 << 30; + void RandomizeTutorial(); + void RandomizeSymmetry(); + void RandomizeDesert(); + void RandomizeQuarry(); + void RandomizeTreehouse(); + void RandomizeKeep(); + void RandomizeShadows(); + void RandomizeTown(); + void RandomizeMonastery(); + void RandomizeBunker(); + void RandomizeJungle(); + void RandomizeSwamp(); + void RandomizeMountain(); + void RandomizeAudioLogs(); - void Randomize(std::vector& panels, int flags); - void RandomizeRange(std::vector &panels, int flags, size_t startIndex, size_t endIndex); - void SwapPanels(int panel1, int panel2, int flags); - void ReassignTargets(const std::vector& panels, const std::vector& order, std::vector targets = {}); - void ReassignNames(const std::vector& panels, const std::vector& order); + void Randomize(std::vector& panels, int flags); + void RandomizeRange(std::vector &panels, int flags, size_t startIndex, size_t endIndex); + void SwapPanels(int panel1, int panel2, int flags); + void ReassignTargets(const std::vector& panels, const std::vector& order, std::vector targets = {}); + void ReassignNames(const std::vector& panels, const std::vector& order); - std::shared_ptr _memory; + std::shared_ptr _memory; - friend class SwapTests_Shipwreck_Test; + friend class SwapTests_Shipwreck_Test; }; -- cgit 1.4.1