|
 |
|
08-11-2008, 03:09 PM
|
#106
|
|
Newbie
Join Date: Dec 2004
Posts: 42
|
Quote: Originally Posted by monkeyracer 
What does GASNAV refer to in your exectbl.ini?
It sort of looks like the skin is trying to do two searches at the same time, and the auto-it executable doesn't allow two instances.
I also don't know what your SETVAR;StationNum;X is for, with the newly posted GASNAV (from this post here) you don't need to set the VAR first.
Nevermind! Got it... just had to add:
"GASNAV","GPS"
To my exectbl.ini file - works perfectly
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
08-11-2008, 03:13 PM
|
#107
|
|
FLAC
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,650
|
Mikeeps2,
You need to include the jpg's so I can see your skin.
Last edited by MGD; 08-11-2008 at 03:15 PM.
|
|
|
08-11-2008, 03:25 PM
|
#108
|
|
Low Bitrate
Join Date: Aug 2007
Posts: 61
|
MGD , sorry my friend , i add all , see now
|
|
|
08-11-2008, 03:58 PM
|
#109
|
|
FLAC
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,650
|
Ok, here is your skin back. WORKING...
|
|
|
08-11-2008, 04:22 PM
|
#110
|
|
Low Bitrate
Join Date: Aug 2007
Posts: 61
|
WOWO , my friend , now working good , thanks so much
|
|
|
08-11-2008, 04:26 PM
|
#111
|
|
FLAC
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,650
|
No problem, glad you got it working.
|
|
|
08-11-2008, 09:32 PM
|
#112
|
|
Super Moderator
Join Date: Sep 2005
Location: West Palm Beach, Florida
Posts: 3,745
|
I have found one small issue with the GasNav (EDIT: RRGas rather). For some reason it is firing when Road Runner starts up, and has to finish what it is doing before RR becomes ready. It delays startup of the skin just slightly on the desktop.
In the car, where I do not have Internet it is another story. It holds up RR from loading for like 30 seconds or more in the car. It locks rr so tight, then the 3D logo is frozen instead of spinning on the main menu. It's like it is taking Priority over Road Runner or something.
Last edited by JohnWPB; 08-12-2008 at 08:47 AM.
|
|
|
08-12-2008, 08:12 AM
|
#113
|
|
Confusion Master
Join Date: Sep 2003
Location: If you go down to the woods today, You're sure of
Posts: 11,937
|
GasNAv or RRGas?
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
08-12-2008, 08:41 AM
|
#114
|
|
Super Moderator
Join Date: Sep 2005
Location: West Palm Beach, Florida
Posts: 3,745
|
Sorry about that! I dont know WHY I typed that hahaah! I meant so say RRGas.
Talking with BlueZX3, Guino said there is something you have to add to the extension code, to do with a timer or something to allow it to run in the background when RR is loading... He had the same problem with one of the first extension plugins he created. I have never created any extension plugins, so I have no clue exactly what the code would be.
Last edited by JohnWPB; 08-12-2008 at 08:48 AM.
|
|
|
08-12-2008, 08:55 AM
|
#115
|
|
Confusion Master
Join Date: Sep 2003
Location: If you go down to the woods today, You're sure of
Posts: 11,937
|
I'm not surprised.
I have speed issues when I develop at work as I run off a USB stick that is running at 1.1, so it is very noticeable, but when I tried it on the Home PC is didn't seem to delay things.
The reason is it is basically loading from the old file if it is the same day and zipcode as in the ini. If not it then tries to access the website to get new information, this is probably where it is slowing RoadRunner down.
Although the downloading from the internet is supposed to be delayed for 4 seconds (maybe it needs more) to allow RoadRunner to do it's thing.
What I'll add is some extras to the ini.
1. Setting to allow or disallow RRGas to load from the internet if the the old info is not todays
2. A delay time, so the user can configure it themselves.
I will also try to add a check for internet and if none is present it will use the cached version.
|
|
|
08-12-2008, 08:58 AM
|
#116
|
|
Terminal flasher
Join Date: Sep 2004
Location: Woodbridge, VA
Posts: 6,307
|
guino wishes that plugins which demand high cpu priority use a timer as an intermediary. Basically, instead of RR running the functions directly RR would simply activate a timer which would then run the functions thus releasing RR to go about its further processing. The problem is i've never figured a way to do this without some other function failing and its a PITA to code for in my very noobish opinion. If u wish to see the timer plugin example i can supply it but its somewhere here on the board already.
__________________
03 Acura RSX Coupe
Developer of: RRFusion, MovieTimes.NET, (new)RRMail, RRShoutcast, & RRVehicle Maintenance
Currently working on: RRVehicle Maintenance
|
|
|
08-12-2008, 10:54 AM
|
#117
|
|
Super Moderator
Join Date: Sep 2005
Location: West Palm Beach, Florida
Posts: 3,745
|
That jogs my memory on another thing.... I recall Blue saying that the timer somehow allows the process to run as another thread. This way RR and it can be doing their separate things as the same time, and the plugin will not interfere with RR doing its thing.
|
|
|
08-12-2008, 11:14 AM
|
#118
|
|
Confusion Master
Join Date: Sep 2003
Location: If you go down to the woods today, You're sure of
Posts: 11,937
|
The downloading is done off a timer
Trouble is the downloading is what ties up the processor, especially while it waits for the site DNS to resolve the first time.
Similar to the initial delay you see when trafficams first loads.
adding the ip addresses for www.automotive.com and local.yahooapis.com to your lmhosts file might help speed the initial access. (trouble with that is, if either one changes their IP in the future)
Last edited by Enforcer; 08-12-2008 at 11:16 AM.
|
|
|
08-12-2008, 02:16 PM
|
#119
|
|
Super Moderator
Join Date: Sep 2005
Location: West Palm Beach, Florida
Posts: 3,745
|
Quote: Originally Posted by Enforcer 
The downloading is done off a timer
Trouble is the downloading is what ties up the processor, especially while it waits for the site DNS to resolve the first time.
Similar to the initial delay you see when trafficams first loads.
It may be with a timer, ( and sorry I dont understand that part at all), but it does not seem to be a separate process. If it were a separate thread, then there is no way it should make a 3D spinning logo in the main menu remain frozen until the gas plugin is done doing its thing. It appears to be running in the same thread as RR, thus they are both fighting for CPU cycles.
|
|
|
08-12-2008, 07:38 PM
|
#120
|
|
The Last Good Gremlin
Join Date: Nov 2004
Location: St Louis
Posts: 1,933
|
I've tried everything I can think of to get Enforcer Personal Freedrive 1.06 to route to a gas station and nothing seems to work for me. I'm using Havic 2.1 skin and have changed the exectbl.ini to execute "rrgas_#_fdnavigate" when selecting a gas station. It jumps to Freedrive, but just sits there - no route. Tried both with and without an existing route in place and the existing route is removed but no new routing.
Enforcer is there something I need to turn on in your personal edition to get this to work?
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:54 PM.
| |