Skip to main content

Design

1. Levels

Pingpong Shooter contains two client levels and one server level.

// Client levels
World'/Game/PGOS/Maps/LoginMap.LoginMap'
World'/Game/PGOS/Maps/HallMap.HallMap'

// Battle level
World'/Game/PGOS/Maps/BattleMap.BattleMap'

1.1 Login Level (game client level)

Function: This level is the start level of the sample game client and is used to complete preparations before entering the game hall.

1.2 Hall Level (game client level)

Function: This level simulates the entrance to the game hall before a battle session. It integrates player information, team formation, and matchmaking, and loads other modules.

Flowchart

1610072835817

1.3 Battle Level (game server level)

This level simulates a game battle. It implements DS hosting access, battle information display, simple gameplay, battle result processing, player data updates and other modules.

1605766957568

2. Use of PGOS Features

Player Management is used in the Login Level, and includes features such as player sessions and a fake account system.

Player Data is used in the Hall Level and Battle Level. It allows player data to be updated in the Battle Level and player data to be pulled in the Hall Level.

Party is used in the Hall Level. The sample uses parties to handle multiplayer matchmaking requests.

Matchmaking is used in the Hall Level. Both single-player matchmaking requests and multiplayer matchmaking requests are handled in the sample.

Lobby is used in the Hall Level. The sample supports the creation of two types of lobbies.

DS Hosting Interfaces are invoked in the Battle Level to manage the activation and termination of battle sessions.

3. Gameplay

3.1 Game Client

3.1.1 LoginPage

Launches the Pingpong Shooter process in the client to access the login page. Click Start Game to log in using the default configuration parameters.

1606460226473

A display name is required to log in for the first time.

1606460254038

After logging in successfully, a version check will be executed to ensure that the client is always running the latest version of Pingpong Shooter. An upgrade tip will pop up if the client is not the latest version.

1606464554779

If login fails, a prompt message will be displayed, such as this player is banned.

ban_16179526133197

3.1.2 MainPage

If the login is successful, you will be taken to the main page.

MainPage

Modify Player Data: Click the avatar to modify the player information.

1606400774865

Game Mode:

  1. 1v1 Mode: A total of 2 players; click the button to enter single-player battle mode.
  2. 5v5 Mode: A total of 10 players; click the button to enter multiplayer game mode.

3.1.3 Friends & Blocklist Page

Friends & Blocklist

Click the button in the lower right corner of the MainPage to open two lists, the friend list and blocklist.

FriendList_BP

You can also open the lists in the MultiMatching page. Click the Invite button next to a player avatar to invite the player to join the current party.

FriendList_Party

Click the FriendList or BlockList tab to switch between the lists.

Block_BP

In addition, the player can click a player avatar in a list to display more information on the friend.

FriendInfo_BP

Friend Presence

Currently, there are six kinds of player status in Sample, and it will refresh the player status every two seconds.

  • Online
  • In Party
  • In LobbyLobby
  • In Matchmaking
  • In Battle
  • Offline

Friend Request List

Click My Request List to open the friend request list.

FriendRequestList_BP

  • Received: Displays the friend requests received. If the status of request is *pending*, an Accept button will be shown.
  • Sent: Sent requests.

Friend Request Page

A player will be shown the friend request page when friend requests are received from other players.

FriendRequest_BP

3.1.4 LobbyPage

Click on the sword icon in the lower right corner of MainPage to open LobbyPage. You will see a list of active lobbies. Double-click a lobby to join it or click Create a New Lobby to create a new lobby.

1610073653642

Create a Lobby

  • Game Mode determines how many teams there are in a battle and the capacity of each team.
  • The Name of the lobby.
  • The Password of the lobby. A password is optional.
  • Choose whether to Create a Chat Channel.
  • Select Invisible to create a lobby that will not appear in the lobbies list.

1610073995593

Lobby

  • Double-click any empty slot to add the player to this slot.
  • Double-click any player‘s avatar to show the owner's menu, which has the options to kick the player out or set them as the lobby owner.
  • Click Invite to Lobby to invite a player to the lobby.
  • Click Leave Lobby to leave the lobby.
  • Click Dismiss Lobby to dismiss the lobby. This option is visible for the lobby owner only.
  • Click Edit Lobby Info to edit the lobby info: the lobby name, password and whether the lobby is visible or not.
  • Ready: The ready button is visible to lobby members. Using a typical implementation of the lobby service, the sample disables the lobby owner's StartBattle button until all lobby members are Ready.
  • StartBattle: The StartBattle button is available when all lobby members are Ready. Click it to start a battle with lobby members.

Lobby owner's screen:

1610075232799

Lobby member's screen:

1610075153049

3.1.5 PartyPage

PartyPage

Leader Logo: An icon displayed above the leader’s avatar.

Kick Out Player: A Kick button is displayed under each player. Clicking it will kick the player out of the party.

Invite Player: Click the "Invite Player" button and enter a valid player ID to send an invitation request.

Leave Party: Click the "Leave" button to leave the party. If the player is the leader, the leader role will be automatically transferred to another member.

Start Matchmaking : Click the "Start Matchmaking" button to start matchmaking along with all the players in the party.

Party Record: A list of player records is displayed on the right to quickly invite players.

3.1.6 Invite a Player

The invitee will receive an invitation notification and may choose to join or reject the invitation.

InvitePlayer

3.1.7 Start Matchmaking

After matchmaking is started, all the players in the party will receive an invitation notification. The matchmaking begins after everyone accepts the matchmaking invitation.

Matchmaking

Searching

3.2 Battle Server

Pingpong Shooter supports two teams in one battle session. The members of the two teams compete with each other until only one team survives, and the battle is over.

3.2.1 Spawn Point

Pingpong Shooter has three platforms for team members. Members in the red team are spawned on the red platform, and so on.

1605773699256

3.2.2 Battle Start

Each player gets a Start Fighting !!! prompt when all players have entered the battle level.

1606400868756

3.2.3 Numerical design

Pingpong Shooter stores player attributes using Player Data.

LN() means natural logarithm

FieldDescriptionAlgorithm
level_expThe experience needed to reach the next levelIncrease level_exp by 5 when killed
levelPlayer LevelThe exp needed to go from level(n-1) to level(n) is 10*2^Level | The top level is 10
hit_pointPlayer Hit PointsHP = 10*2^LN(Level) | From 10 to 49
attack_pointPlayer Attack PointsAttack= 4*2^LN(Level)

Attribute value enumeration:

levellevel_exphit_pointattack_point
00120104
0024016.168066726.467226689
0038021.414860648.565944256
416026.1406381510.45625526
532030.513293612.20531744
664034.6236895713.84947583
7128038.5280761615.41123046
8256042.2643581816.90574327
9512045.8596256218.34385025
10-49.3340966819.73363867

3.2.4 Battle Chat

If you want to chat with other players in a battle, press the "Enter" key to enter the chat as shown below.

There is a chat dialog box in the lower left corner. There are two chat channels: "all" and "red".

  • all: All players in the battle will receive messages sent in this channel.
  • red: This channel is for team members in the battle. Messages sent in this channel will only be received by members of your team.

img

3.2.5 Voice Chat

When entering the battle, the players will join a positional voice channel. The players from different teams join the same channel through battle session ID, but have different team IDs. The player's speaker and microphone are off by default. To use these features, the player needs to press the "Enter" key and then click the corresponding icons to enable them. The world channel is off by default. Players can check the checkbox to switch to the world channel.

  • Speaker: The player can hear other players' voices when the speaker is turned on.
  • Microphone: The player can be heard by other players when the microphone is turned on.
  • World Channel: Players in the world channel can voice chat with all the players in the battle. If not checked, the players can only voice chat with the members of their own team.

A list shows players from the same team. A microphone icon will be displayed in the player's avatar when he/she is talking.

Voice_16138056791830

Voice_16138036784958

Note

The players joined a positional channel. This means when the world channel is turned on, the player can hear the voices of the other team's players when those players are within the audible distance. Voice chats within the same team are non-positional and no audible distance is applied.

3.2.6 Simple Battle Season

The sample currently uses a Virtual Server to implement a simple battle season. Battle season features include request season information, join or leave the season, and battle result processing. Diamond are used in the battle season, as a certain number of diamond are required to join it.

  • Join Status: Whether a player has joined the season.
  • Players Num: The number of all players who have joined the season.
  • Your Diamond: The number of diamond for player.
  • Join Battle: The number of diamond required to join the season.
  • Start Battle: Players must join the season before they start the battle.

BattleSeason_2

BattleSeason_1

The player can click the "Start Battle" button to start matchmaking. Players can only be matched with other players who have joined this season. The matchmaking rule is 1v1.

BattleSeason_4

At the end of the battle, the winner will be rewarded with currency and the loser will see a corresponding number of diamond deducted.

BattleSeason_5

3.2.7 Economy

Here in the sample, we use the Economy APIs to implement the Balances, Store, and Inventory functions and demonstrate their actual effects.

  1. Balances

    Displays the Currency and Amount information of players.

    Currency types:

    • Gold: Used to buy buff scrolls and other store items.
    • Diamond: Used to buy gear and other important store items, mainly acquired through Simple Battle Season battles.
  2. Store

    Displays the items that players can purchase and their prices.

    All types:

    • Gold scroll: A time-sensitive item instance. When a player purchases and then consumes this scroll, the player will earn x2 gold from battles.
    • Experience scroll: A time-sensitive item instance. When a player purchases and then consumes this scroll, the player will earn x2 experience from battles.
    • Gear: A unique permanent item instance, each player can only have one. After purchase, the player obtains the gear. Gear cannot be consumed, but increases the player's attack or defense during battles once equipped.
    • Container: Contains scrolls, gold, gear, and other item instances. After purchasing a container, the player opens it to obtain all its contents. If the container contains gear, its price is reduced if the player has already owned any of the unique item instances it contains.
    • Bundle: Contains gear. After a player purchases a bundle, the player obtains all its contents. Its prices change just like how that of containers with gear reduces.
  3. Inventory

    Holds the item instances of a player. Players can consume, open, equip, or revoke these instances.

    All types:

    • Gold scroll: A time-sensitive item instance. When a player consumes this scroll, the player will earn x2 gold from battles.
    • Experience scroll: An time-sensitive item instance. When a player consumes this scroll, the player will earn x2 experience from battles.
    • Gear: A unique permanent item instance. By equipping gears, players increase their attack and defense during battles.
    • Container: Players open containers to obtain all their contents.
3.2.7.1 Balances

The player balance is displayed on the upper-right of the Store and Inventory pages.

Economy_16244995712019

3.2.7.2 Store
3.2.7.2.1 Store Page

Economy_16244978358073

3.2.7.2.2 Item Purchase Page

Economy_16244978474716

Economy_16244979562275

3.2.7.2.3 Purchase Successful Page

Economy_16244979635039

3.2.7.3 Inventory
3.2.7.3.1 Inventory Homepage

Economy_16244982292630

3.2.7.3.2 Open Container Page

Economy_16244982354879

3.2.7.3.3 New Item Instances Page

Economy_16244982439401

3.2.7.4 Battle

After the battle starts, equipped item instances are shown in the lower-right corner.

Economy_16233784471910