about summary refs log tree commit diff stats
path: root/WitnessRandomizer/WitnessRandomizer.h
blob: 9e84a46d2a476b7c78ca62564e4413b4be22191d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

int SWAP_TARGETS = 0x1;
int SWAP_LINES = 0x2;
int SWAP_COLORS = 0x4;

class WitnessRandomizer {
public:

	WitnessRandomizer();

	void Randomize(std::vector<int> panels, int flags);
	void SwapPanels(int panel1, int panel2, int flags);

private:
	void SwapPanelData(int panel1, int panel2, int finalOffset, int dataSize);

	Memory _memory;
};