[Hugo] Code Review - Music Engine
Posted: Sat Apr 03, 2010 3:20 pm
I think there's a bug in the code that stops music from playing when the hour switches from 59 to 00. Let me post what I've got, and then I'll try to describe what I am doing. Any help would be greatly appreciated.
Code: Select all
routine MusicManager
{
local x, currentTime
TempTimeArray[0] = GetSystemTimeValue(TIME_MONTH)
TempTimeArray[1] = GetSystemTimeValue(TIME_DAY)
TempTimeArray[2] = GetSystemTimeValue(TIME_HOURS)
TempTimeArray[3] = GetSystemTimeValue(TIME_MINUTES)
TempTimeArray[4] = GetSystemTimeValue(TIME_SECONDS)
! If we go to a different month, day or hour, play a new song.
if ((LastTimeArray[0] ~= TempTimeArray[0]) or (LastTimeArray[1] ~= TempTimeArray[1]) or (LastTimeArray[2] ~= TempTimeArray[2]))
{
PlayNewSong
for (x=0; x <5> LastTimeAsNumber + MusicArrayTime[LastSongPlayed]
{
PlayNewSong()
for (x=0; x < 5; x++)
{
LastTimeArray[x] = TempTimeArray[x]
}
return
}
return
}
routine GetCurrentTime()
{
local y
y = TempTimeArray[3] ! y contains total number of minutes
y = y * 60 ! minutes in seconds
y = y + TempTimeArray[4]
return y
}
routine GrabFirstRandomSong
{
local x
! Ideally, I'm going to change this so only certain songs can be the first one played.
! x = random(4)
! But I don't want this in place while I'm testing the game.
x = random(MAXSONGS)
x--
PlayMusic("czmus", MusicArray[x], music_volume, false, true)
LastSongPlayed = x
LastTimeArray[0] = GetSystemTimeValue(TIME_MONTH)
LastTimeArray[1] = GetSystemTimeValue(TIME_DAY)
LastTimeArray[2] = GetSystemTimeValue(TIME_HOURS)
LastTimeArray[3] = GetSystemTimeValue(TIME_MINUTES)
LastTimeArray[4] = GetSystemTimeValue(TIME_SECONDS)
TempTimeArray[0] = GetSystemTimeValue(TIME_MONTH)
TempTimeArray[1] = GetSystemTimeValue(TIME_DAY)
TempTimeArray[2] = GetSystemTimeValue(TIME_HOURS)
TempTimeArray[3] = GetSystemTimeValue(TIME_MINUTES)
TempTimeArray[4] = GetSystemTimeValue(TIME_SECONDS)
TempTimeArray[4]++
LastTimeAsNumber = GetCurrentTime()
! "Initially printing LastTimeAsNumber and it is ";
! print number LastTimeAsNumber
}
routine PlayNewSong
{
local y,x
x = LastSongPlayed
while (x = LastSongPlayed)
{
y = random(MAXSONGS)
y--
! If y is pursedlips, let's make sure we don't play it twice
if x = 4
{
if GameEvents[132] = 1
{
x = LastSongPlayed
}
else
{
GameEvents[132] = 1
} x = y
}
elseif x = 10
{
if GameEvents[133] = 1
{
x = LastSongPlayed
}
else
{
GameEvents[133] = 1
} x = y
}
else
{
x = y
}
}
PlayMusic("czmus", MusicArray[x], music_volume, false, true)
LastSongPlayed = x
LastTimeArray[0] = GetSystemTimeValue(TIME_MONTH)
LastTimeArray[1] = GetSystemTimeValue(TIME_DAY)
LastTimeArray[2] = GetSystemTimeValue(TIME_HOURS)
LastTimeArray[3] = GetSystemTimeValue(TIME_MINUTES)
LastTimeArray[4] = GetSystemTimeValue(TIME_SECONDS)
TempTimeArray[0] = GetSystemTimeValue(TIME_MONTH)
TempTimeArray[1] = GetSystemTimeValue(TIME_DAY)
TempTimeArray[2] = GetSystemTimeValue(TIME_HOURS)
TempTimeArray[3] = GetSystemTimeValue(TIME_MINUTES)
TempTimeArray[4] = GetSystemTimeValue(TIME_SECONDS)
TempTimeArray[4]++
LastTimeAsNumber = GetCurrentTime()
}
routine DoMusicStats
{
local currentTime, nextSongTime
TempTimeArray[0] = GetSystemTimeValue(TIME_MONTH)
TempTimeArray[1] = GetSystemTimeValue(TIME_DAY)
TempTimeArray[2] = GetSystemTimeValue(TIME_HOURS)
TempTimeArray[3] = GetSystemTimeValue(TIME_MINUTES)
TempTimeArray[4] = GetSystemTimeValue(TIME_SECONDS)
currentTime=GetCurrentTime
"LastSongPlayed is ";
print number LastSongPlayed
""
"song id is ";
print MusicArray[LastSongPlayed]
""
"currentTime is ";
print number currentTime
""
"LastTimeAsNumber is ";
print number LastTimeAsNumber
""
"Current Song Length is ";
print number MusicArrayTime[LastSongPlayed]
""
"New song plays at ";
nextSongTime = LastTimeAsNumber + MusicArrayTime[LastSongPlayed]
print number nextSongTime
}