forked from EdSalisbury/jigsaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin_pieces.cpp
56 lines (50 loc) · 2.07 KB
/
join_pieces.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**********************************************************
* Jigsaw *
* A jigsaw puzzle creator/solver/game *
* by Ed Salisbury ([email protected]), *
* Matt Goralczyk ([email protected]), *
* and James Brayton ([email protected]) *
* (c)2012, Some Rights Reserved *
**********************************************************/
/*
* License:
* Except where otherwise noted, this work is licensed under Creative Commons
* Attribution ShareAlike 3.0.
*
* You are free:
* ~ to Share -- to copy, distribute and transmit the work
* ~ to Remix -- to adapt the work
*
* Under the following conditions:
* ~ Attribution. You must attribute the work in the manner specified by the
* author or licensor (but not in any way that suggests that they endorse
* you or your use of the work).
* ~ Share Alike. If you alter, transform, or build upon this work, you may
* distribute the resulting work only under the same, similar or a
* compatible license.
* ~ For any reuse or distribution, you must make clear to others the license
* terms of this work. The best way to do this is with a link to the
* license's web page (http://creativecommons.org/licenses/by-sa/3.0/)
* ~ Any of the above conditions can be waived if you get permission from the
* copyright holder.
* ~ Nothing in this license impairs or restricts the author's moral rights.
*/
#include <iostream>
#include <sstream>
#include "puzzle.h"
int main(int argc, char **argv)
{
if (argc < 7)
{
std::cout << "Usage: join_pieces <dir> <piece1> <piece2> <offset1> <offset2> <length>" << std::endl;
return 1;
}
Puzzle puzzle;
std::stringstream dir;
dir << argv[1];
Color black = Color(0, 0, 0, 255);
Color blue = Color(0, 0, 255, 255);
std::cout << puzzle.JoinPieces(dir.str(), atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), atoi(argv[5]), atoi(argv[6]), black, blue);
std::cout << std::endl;
return 0;
}