Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 2.08 KB

File metadata and controls

25 lines (18 loc) · 2.08 KB

GameDB-PS2

Sony PlayStation 2 (PS2), part of GameDB.

Structured Downloads

Notes

Uniquely Identifying Games

Most PS2 games have a file in the root directory of the disc with a naming structure like SXXX_XXX.XX, where SXXX-XXXXX is the game's serial (i.e., how the game folders in games are named). This file is the game's executable, and this file's name can be trivially converted to the game's serial, which can easily uniquely identify the game. See the relevant part of the GameID PS2 identification code for implementation details.

Some games have an executable that doesn't follow this naming scheme. In some of these cases, the disc's volume ID (sometimes known as the "label") contains the serial. See the relevant part of the GameID PS2 identification code for implementation details.

If neither of these is the case, you might be able to use some combination of the game disc's UUID, volume ID, and file list to uniquely identify the game, but GameID doesn't currently explore those.

Sources