Multiplayer Games Flashcards

1
Q

What areas of the industry to games drive?

A

Graphics, CPU, networking

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a games engine? What are the 4 sub-systems it contains?

A

A virtual machine into which character models, scripted behaviour, graphics and sounds effects can be loaded.

Physics Engine: physical properties of an environment
Rendering Engine: Draws the visuals on the screen
Behaviour module: Characters not under the players control and other objects have behaviour controlled by AI and behaviour scripts
Networking Layer: Replicated game state among participants to create a shared view

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Give a short history

A

Tennis for two- two controllers on same hardware
Spaceware- two players not DS, gravity and black holes
Pong- successful. Buy, plug in, play. Multiplayer not DS
Gauntlet- not DS
Doom- single player with multiplayer patches, looked 3D
Quake- graphics card, proper 3D
Unreal- better graphics, better engine
World of Warcraft- multiplayer online game
Minecraft- low computing requirements
Fortnite

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the problem of the berkeley algorithm in gaming?

A

Can’t go backwards in time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Describe the architecture of the Doom multiplayer patch

A

peer to peer. slow dialup connection. speed locked to lowest performing peer. poor graphics capabilities. slow and variable processor power.
Lack of player and frame-rate scalability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Describe the Quake architecture

A

no central server, nodes take up server type role (i.e. second gen file sharing). Best performing peer promoted to coordinator. restricted protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe the Unreal architecture

A

Now a game engine.

Instead of a strict protocol, a scripting language. Script behaviours and network interaction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe the problem of what we can synchronise

A

Moores law: CPU power doubles every 20 months.
Graphics power increases faster than this.
There’s more and more stuff to synchronise.
We can simulate and render far more than we can hope to distribute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Kant’s 3 things that precede understanding. What does this mean?

A

Time, Space, Causality.

There is something about our brains that interpret things in these ways. Our brains make things fit this notion. We can ignore tiny delays

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How much time of play do we have before people notice inconsistencies? What is this called?

A

100 milliseconds.

Client side prediction. Mark some events as independent. Mark others as loosely coupled. Others are key to game play- prioritise synchronisation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What Protocols do we use if

a) something MUST get there at some point
b) something we can afford to loose but would like there quickly

A

a) TCP/IP

b) UDP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly