Mods

From AVIC Wiki

Jump to: navigation, search

Mods for AVIC F series aka Software modifications / customizations to the interface for audio-video Navigation systems

CMH mods - one of the most easiest and superbly implemented modding system - best for newbies too. BUT READ BEFORE YOU JUMP IN - NO LIABILITIES FOR NOT READING / SOFTWARE CRASHES / BRICKED SYSTEM. USE AT YOUR OWN RISK!! YOU HAVE BEEN WARNED

Tap Compass to Cancel Route From AVICWiki Jump to: navigation, search Tap Compass to Cancel Route

Using a program like 7zip or winRAR, open the file

   * Data.zip\ui_pioneer\800_480\ui\navigatemap_800_480.ui 

inside of your DATA.ZIP file (do not extract the data.zip file)

Find the line

   ; <SPRITE spr_Compass bmp="compass_bg.bmp" x=730 y=72 z=5>

and replace it with

   ; <SPRITE spr_Compass bmp="compass_bg.bmp" x=730 y=72 z=5>
   <SPRITE spr_Compass bmp="compass_bg.bmp" x=730 y=72 z=5 visiblemodel="!navigation.has_route">
   <SPRITE spr_Compass bmp="compass_bg.bmp" x=730 y=72 z=5 onrelease='run sc_btnARM_Delete_OnRelease' visiblemodel="navigation.has_route">

Save the file and place it back into the DATA.ZIP file in the same location




HOWTO: add voice guidance mute button

Postby brink094 on Wed Oct 15, 2008 10:03 pm I've found a way to add a button to the map screen that can mute/unmute the navigation voice guidance. Only the voice is muted, the AV sources and even the key beeps are not affected! Luckily for us Pioneer/iGo have already created mute/unmute scripts, we only have to add a button and run those scripts. :D

For this example I'm going to use some images that are already available on the avic, you can create your own icons if you want to. In this example a green button means voice guidance is on and a red button means the voice is muted. These buttons are only displayed on the right side of the map when there is an active route.

You can add this code to Data.zip/ui_pioneer/800_480/ui/navigatemap_800_480.ui inside the ui_NavigateMapButtons layer. I've attached a file with only this mod added.

Code: Select all

   ; ** voice guidance is on, display green button
   <BUTTON xxx bmp="746_32K_OM-019_32b.bmp#3" x=720 y=280 onrelease='run sc_mute_guidance_immediately' onclick='playsound "!button"' visiblemodel="navigation.has_route&!sound.announcer.muted" USE_SEPARATED_SAFETY_MODE=0>
   ; ** voice guidance is off, display red button
   <BUTTON xxx bmp="746_32K_OM-018_32b.bmp#3" x=720 y=280 onrelease='run sc_unmute_guidance' onclick='playsound "!button"' visiblemodel="navigation.has_route&sound.announcer.muted" USE_SEPARATED_SAFETY_MODE=0>


As you can see, to mute the voice you can call the 'sc_mute_guidance_immediately' script and to unmute the voice you call 'sc_unmute_guidance'. These scripts are defined in Data.zip/ui_pioneer/common/ui/langvoice.ui

This setting is not remembered when you shut down the unit, so the next time you get in your car you have to mute the voice again...

Update: I've added some essay writing services icons to the zipfile.

Update 2: Updated the zipfile to work with the 1.9/2.0 firmware, added the updated navigatemap_800_480.ui by mikeinnj.

Attachments

   ui_pioneer.zip
       ui_pioneer zip file with only this mod added, custom mute/unmute buttons are available in the zipfile.
       (54.28 KiB) Downloaded 982 times
Personal tools