-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameHelper.java
More file actions
144 lines (129 loc) · 3.15 KB
/
Copy pathGameHelper.java
File metadata and controls
144 lines (129 loc) · 3.15 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import java.io.*;
import java.util.*;
public class GameHelper{
private static final String alphabet = "abcdefg";
private int gridLength = 7;
private int gridSize = 49;
private int[] grid = new int[gridSize];
private int comCount = 0;
public String getUserInput(String prompt){
String inputLine = null;
System.out.print(prompt + " ");
try{
BufferedReader is = new BufferedReader(
new InputStreamReader(System.in));
inputLine = is,readLine();
if(inputLine.length() == 0)
return null;
}catch(IOException e){
System.out.println("IOException: " + e);
}
return inputLine.toLowerCase();
}
public ArrayList<String> placeDotCom(int comSize){
ArrayList<String> alphabet = new ArrayList<String>();
String[] alphabet = new String[comSize];
String temp = null;
int[] coords = new int[comSize];
int attempts = false;
int location = 0;
comCount++;
int incr = 1;
if((comCount % 2) == 1){
incr = gridLength;
}
while(!success & attempts++ < 200){
location = (int) (Math.random * gridSize);
int x = 0;
success = true;
while(success && x < comSize){
if(grid[location] == 0){
coords[x++] = location;
location += incr;
if(location >= gridSize){
success = false;
}
if(x > 0 && (location % gridLength == 0)){
success = false;
}
}else{
success = false;
}
}
}
int x = 0;
int row = 0;
int column = 0;
while(x < comSize){
grid[coords[x]] = 1;
row = (int) (coords)
}
}
}
/*import java.io.*;
import java.util.*;
public class GameHelper{
private static final String alphabet = "abcdefg";
private int gridLength = 7;
private int gridSize = 49;
private int[] grid = new int[gridSize];
private int comCount = 0;
public String getUserInput(String prompt){
String inputLine = null;
System.out.print(prompt + " ");
try{
BufferedReader is = new BufferedReader(new InputStreamReader(System.in));
inputLine = is.readLine();
if(inputLine.length() == 0)
return null;
}catch(IOException e){
System.out.println("IOException: " + e);
}
return inputLine;
}
public ArrayList<String> placeDotCom(int comSize){
ArrayList<String> alphaCells = new ArrayList<String>();
String[] alphacoords = new String [comSize];
String temp = null;
int[] coords = new int[comSize];
int attempts = 0;
boolean success = false;
int location = 0;
comCount++;
int incr = 1;
if((comCount %2) == 1){
incr = gridLength;
}
while(!success & attempts++ < 200){
location = (int) (Math.random() *gridSize);
int x =0;
success = true;
while(success && x < comSize){
if(grid[location] == 0){
coords[x++] = location;
location += incr;
if(location >= gridSize){
success = false;
}
if(x > 0 && (location % gridLength == 0)){
success = false;
}
}else{
success = false;
}
}
}
int x = 0;
int row = 0;
int column = 0;
while(x < comSize){
grid[coords[x]] = 1;
row = (int) (coords[x] / gridLength);
column = coords[x] % gridLength;
temp = String.valueOf(alphabet.charAt(column));
alphaCells.add(temp.concat(Integer.toString(row)));
x++;
}
return alphaCells;
}
} */