-
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.
created the first few sequence diagrams
- Loading branch information
Showing
5 changed files
with
78 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@startuml | ||
title Create Player Profile | ||
|
||
actor Player | ||
database System | ||
|
||
Player->System: Click Profile Button | ||
System->Player: Show Profile Creation Prompt | ||
Player->System: Set Name | ||
Player->System: Set Color | ||
Player->System: Click Create Profile Button | ||
System->System: Save Profile on Disk | ||
System->Player: Show Profile | ||
|
||
@enduml |
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 @@ | ||
@startuml | ||
title Delete Player Profile | ||
|
||
actor Player | ||
database System | ||
|
||
Player->System: Click Profile Button | ||
System->Player: Show Profile | ||
Player->System: Click Delete Profile Button | ||
System->System: Delete Profile from Disk | ||
System->Player: Show Profile Creation Prompt | ||
|
||
@enduml |
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,16 @@ | ||
@startuml | ||
title Create Player Profile | ||
|
||
actor Player | ||
database System | ||
|
||
Player->System: Click Profile Button | ||
System->Player: Show Profile | ||
Player->System: Click Edit Profile Button | ||
Player->System: Change Name | ||
Player->System: Change Color | ||
Player->System: Click Edit Profile Button | ||
System->System: Save Profile on Disk | ||
System->Player: Show Profile | ||
|
||
@enduml |
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,24 @@ | ||
@startuml | ||
title Play versus AI | ||
|
||
actor Player as p | ||
database System | ||
actor AI as a | ||
|
||
p->System: Click Singleplayer Button | ||
System->p: Display AI Difficulty Selection | ||
p->System: Select AI Difficulty by clicking Strong or Weak AI Button | ||
System->System: Host Server locally | ||
System->p: Display Game Lobby | ||
System->a: Create AI | ||
a->System: Connect to Server | ||
a->System: Get Ready | ||
System->p: Show AI is ready | ||
p->System: Click Ready Button | ||
p->System: Click Start Game Button | ||
System->p: Show Playfield | ||
p->p: Play Game | ||
System->System: Process Game | ||
a->a: Play Game | ||
|
||
@enduml |
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 @@ | ||
@startuml | ||
title View Player Profile | ||
|
||
actor Player | ||
database System | ||
|
||
Player->System: Click Profile Button | ||
System->Player: Show Profile | ||
|
||
@enduml |