Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Audio Module Rewrite mcisendstring
#11
Hey DerVV, I've found a solution for you.
RPG Maker XP seems to take EXACTLY 0.5 seconds to load a track. At least, on my PC that is, this may vary, I don't know.
My point being, I can introduce 0.5 seconds of silence before a track and then get them to load one after the other then STILL be synced for playback.

Question:
Does your script load the mp3s in order of their channel? So channel 1 will load before channel 2? If not, is this a possibility? It would mean it loads the track with the silence before it loads the track without it, therefore always playing the music in sync.

Also...
My problem now is that when it loops, it reloads each time them so my timing falls out of place significantly. Is there a way to keep the tracks loaded and just play them over and over? This would prevent there being a second loading period, and a third etc.
I can fix this by manually looping every time and turning off your looping system I guess. Sadly, this doesn't seem to work. I used "BGM_End_Loop" but it didn't stop looping.

So, any ideas how to improve on this? :)
Reply }
#12
In regards of your loop delay/sync problem, something must have been disturbed. The system only loads the files once. Once it reaches the loop point, the audio track merely replays from the other point while it is already loaded. It doesn't perform an OPEN command to reload it.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
#13
Oh right... Then I must have done something wrong. ^^
Thanks.
Reply }
#14
Hi. I have a question.
I wonder if it is possible to use hash and array instead of case-when for setting loop point.

Like:
Code:
{'filename' => [start, loop, finish']}
Reply }
#15
I actually have done that myself. Here are bits of the Game_System area:
PHP Code:
class Game_System
  
  def bgm_data
    data 
= {
      
"Battle2" => [6022180127830],
    }
    
data.default = [0,0,0]
    return 
data
  end 
PHP Code:
# BGM Every setting
    
if bgm != nil and bgm.name != ''
      
if bgm_data.include?(bgm.name)
        
start bgm_data[bgm.name][0]
        
loop bgm_data[bgm.name][1]
        
fin bgm_data[bgm.name][2]
      
end 
I also made some extra changes to be able to start a song where I define, which I am yet to work out how to make the song continue after battle. I just need to be able to get the current position.
PHP Code:
def bgm_play(bgmchannel=1startpoint 0
PHP Code:
fin bgm_data[bgm.name][2]
      
end
      start 
startpoint if startpoint != 
Reply }
#16
This is cool. I can have an air conditioner sound and people talking and a train all in one map.

Derp.
Alot of audio work I am doing right now.
Reply }
#17
Bump
to version 1.2

I figured out a method to let you alter the starting point in Ogg Vorbis music files. It required an additional parameter that I call an Ogg Offset. Weird... but usable. And the editor had been set up to handle it. But I totally forgot you need to install a codex to hear Ogg files when your PC normally can't.

And the audio system now lets you play Midi music using both my system and RPGMaker XP's own default system. As such, the editor had been tweaked to let you flag which Midi pieces may perform that way. Granted, there are negative issues playing midi music using the default audio system 'combined' with music using this one.

And now accompanying the system are two more files, one being a helluva help file while the other is a codex installation file so people unable to play .ogg files can at least play them with this system.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
#18
Sledgehammer bump: This is something I've always have been looking for, the ability to loop a BGM that doesn't require cutting off the intro part. The script works effortlessly, however I wouldn't be posting here if it was without some compatibility issue. Of all the scripts I have, the one that seems to have issue is the Vehicle System script created by yours truly DerVVulfman. Just to be sure I installed the Audio Module script onto the Vehicle demo project to see if it might've been another script causing compatibility problem, however it seems like the two doesn't like each other.

Link to thread: https://www.save-point.org/thread-2554.h...cle+system

Problems:
Just by entering a vehicle would cause a script error. If I was to assume what the problem is, it would be the Vehicle script trying to play the audio assigned to the vehicle which somehow has compatibility problem with the Audio Module script.
Another one is for some reason by having these two scripts together it causes a script error with Save Files, even newly fresh ones after installing the scripts. Having a game where one's Save File being unable to be load due to script error is totally no fun.
Reply }
#19
Did you check 'script order' ?

The Audio Module Rewrite mcisendstring performs a rewrite and overhaul of the audio system. So it would take precedent over the original audio system.

As such, it would be best to have Audio Module Rewrite mcisendstring high up in your list of custom scripts while other scripts which would access or play any audio would be best placed further below.

Other than that, it would be requested to supply the actual error message generated as well as the actual line (if any configuration changes affects the line numbering).

(Currently typing at work... away from my PC with em')
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
#20
(04-18-2020, 06:11 PM)DerVVulfman Wrote: Did you check 'script order' ?

The Audio Module Rewrite mcisendstring performs a rewrite and overhaul of the audio system.  So it would take precedent over the original audio system.

As such, it would be best to have Audio Module Rewrite mcisendstring high up in your list of custom scripts while other scripts which would access or play any audio would be best placed further below.

Other than that, it would be requested to supply the actual error message generated as well as the actual line (if any configuration changes affects the line numbering).

(Currently typing at work... away from my PC with em')

I have tried rearranging the script order by having the Audio Module scripts on the top followed by the scripts for the Vehicle System and the result has not changed unfortunately. I am using the both scripts system from the demo project completely untouched.

As for the error messages, there are three I have managed to produce.

This message is given when entering a Vehicle.
Code:
Script '* Vehicles' line 1291: NoMethodError occurred.

undefined method `name' for {1=> nil, 2=> nil, 3=> nil}:Hash

and the line number of the script:
Code:
   n = value_name.name

The second message is given when loading a save file on a map with a BGM playing.

Code:
Script '* Audio Class Rewrite' line 1063: NoMethodError occurred.

undefined method  `name' for #<Hash:0x3f07048>

and the line number of the script:
Code:
       passed = true unless Audio.bgm_check(channel) == "Audio/BGM/" + bgm.name

The third message is given when loading a save file on a map without a BGM playing.

Code:
Script '* Audio Class Rewrite' line 1063: NoMethodError occurred.

undefined method `name' for {1=> nil, 2=> nil, 3=> nil}:Hash

The line of the script should be the same as the one above.
Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
   Kichi's Kached Audio DerVVulfman 2 7,294 08-21-2023, 11:01 PM
Last Post: DerVVulfman
   Audio Module Kain Nobel 2 1,924 01-25-2022, 11:39 AM
Last Post: Kain Nobel
   Missing Audio Replacer LiTTleDRAgo 1 5,121 06-11-2017, 12:25 AM
Last Post: Whisper
   Super Simple MCISendString DerVVulfman 0 4,273 03-09-2017, 04:52 AM
Last Post: DerVVulfman
   NRGSS Module Function Library Narzew 3 7,425 09-18-2012, 10:44 PM
Last Post: Narzew
   Audio Settings EJlol 1 5,729 07-03-2012, 09:36 PM
Last Post: Erechel
   Victor Engine - Basic Module Victor Sant 0 5,744 12-21-2011, 07:46 AM
Last Post: Victor Sant
   JEM: Jennifer's Entry Module DerVVulfman 0 4,827 10-14-2010, 04:30 AM
Last Post: DerVVulfman
   Module VirtualKeys zecomeia 0 4,708 03-14-2010, 01:25 AM
Last Post: zecomeia
   Audio File Encryption Dark-Yen 0 4,724 03-08-2008, 06:35 AM
Last Post: Dark-Yen



Users browsing this thread: