manually merge sort your favourite djmax respect songs
All of the song data is found at src/fnc_data_song.js, defined in the array ary_SongData
. Each song's data is an array with a specific number of elements; for example:
[1, "2Nite", [1,0,0,0,0,0,0,0,0,0], "https://cdn.cloudflare.steamstatic.com/steam/apps/960170/capsule_616x353.jpg", "xuBQ7dGdj_s", "Respect", "DMR", "ND Lee", REGULAR_SONG, SHORT_MIX],
The elements, in order, are as follows:
- Nothing useful, but we just have
1
here by convention. - Song title.
- A 1:1 mapping to
ary_TitleData
. If the element at indexi
is 1, then it belongs to the game/album with the titleary_TitleData[i]
. - A url for an image for the game to which the song belongs.
- YouTube video ID.
- Game/album full title.
- Game/album abbreviated title.
- Song artist
1
if a regular song,2
if V exclusive,3
if link disc.1
if short/non-extended mix,2
if an extended mix.
For more information, see touhou-song-sorter