generated from BudDavis/TicTacToe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added and removed classes based on the class diagram
- Loading branch information
1 parent
07547d6
commit f1f6ede
Showing
26 changed files
with
295 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package uta.cse3310; | ||
|
||
public class Board_Create { | ||
public float Density; | ||
public int Min_Letters; | ||
public String Handle; | ||
|
||
public int create_grid(){ | ||
return 1; | ||
} | ||
public void assign_direction(){ | ||
|
||
} | ||
public boolean validate_word(){ | ||
return true; | ||
} | ||
public void randomize_filter(){ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package uta.cse3310; | ||
import java.util.ArrayList; | ||
public class Board_Game { | ||
public int Game_Id; | ||
public int Total_valid_words; | ||
public ArrayList<String> Words_found = new ArrayList<String>(); | ||
public int Player_count; | ||
|
||
public boolean check_selection(){ | ||
return true; | ||
} | ||
public int display_board(){ | ||
return 1; | ||
} | ||
public int display_words(){ | ||
return 1; | ||
} | ||
public boolean leave_game(){ | ||
return true; | ||
} | ||
public boolean handle_outstanding(){ | ||
return true; | ||
} | ||
public long display_time(){ | ||
return 1; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package uta.cse3310; | ||
|
||
public class ChatBox { | ||
public String Message_display; | ||
|
||
public String display_message(){ | ||
return Message_display; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package uta.cse3310; | ||
|
||
public class Communication { | ||
public String Message; | ||
|
||
public int validate_message(){ | ||
return 1; | ||
} | ||
public int send_message(){ | ||
return 1; | ||
} | ||
public int receive_message(){ | ||
return 1; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package uta.cse3310; | ||
|
||
public class Game_Summary { | ||
public String handle; | ||
public int Game_Id; | ||
|
||
public int display_summary(){ | ||
return 1; | ||
} | ||
public boolean return_lobby(){ | ||
return true; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package uta.cse3310; | ||
|
||
public class Helper { | ||
public String Handle; | ||
public int Game_Id; | ||
|
||
public String random_word(){ | ||
return "test"; | ||
} | ||
public boolean prompt_player(){ | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package uta.cse3310; | ||
|
||
public class Instruction_user{ | ||
public String Instructions; | ||
public int Game_Id; | ||
|
||
public void instruction_display(){ | ||
|
||
} | ||
} |
Oops, something went wrong.