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

int SWAP_TARGETS = 0x1;
int SWAP_LINES = 0x2;
int SWAP_STYLE = 0x4;
int SWAP_BACK_DISTANCE = 0x8;

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;
};