What Actually Is Happening When a Videogame Loads? (And is loading an offline vs. online game different?)

240 views

Hi All!

Was very curious what actually occurs when loading a game up to play! I also was curious if the process is the same for a singleplayer game versus a multiplayer game?

Thanks!

In: 15

7 Answers

Anonymous 0 Comments

It’s the same as loading every software. You start the program, the program starts fetching the resources it needs to do its job. “Fetching the resources” here can mean different things.

For an offline game it’d be grabbing all the necessary files and setting them up to be used. Files are moved form slow storage to faster memory, data structures are initialized, compressed assets are decompressed (audio files, for example), etc…

For an online game it’d be all of the above, plus some communication over the network with a server to fetch more data to set more things up.

You are viewing 1 out of 7 answers, click here to view all answers.