Re: Nasalを知ろう、使おう!
sambar
居住地: 岡山
投稿数: 484
こんにちわ。今、CVS-「ジョイスティック(js2)からnasalを呼び出して、comm0の周波数を変更する」事に挑戦しているのですが、以下のエラーが出て動きません。
お暇でしたら、どこを間違えているのかご教示ください。
起動時:
js2のaxis0操作時:
/data/nasal/radiopanel.nas
js2のaxis0の部分(抜粋)
お暇でしたら、どこを間違えているのかご教示ください。
起動時:
Nasal parse error: parse error in D:/Program Files/FlightGear-CVS/data/Nasal/rad
iopanel.nas, line 14
Could not open and/or write the state to the initial conditions file.
Model Author: Unknown
Creation Date: 2002-01-01
Version: $Id: c172p.xml,v 1.20 2008/09/01 15:14:33 torsten Exp $
Description: Cessna C-172
Channel Pitch
Channel Roll
Channel Yaw
Channel Flaps
Nasal runtime error: undefined symbol: radiopanel
at /input/joysticks/js[2]/axis/binding, line 1
js2のaxis0操作時:
Nasal runtime error: undefined symbol: radiopanel
at /input/joysticks/js[2]/axis/binding, line 1
/data/nasal/radiopanel.nas
var axisHandler_radio = func(name, min, max, step) {
var value = (cmdarg().getNode("setting").getValue() ;
var frequency = getprop(name) + value * (max - min) ;
var fraction = math.mod(frequency , step);
var frequency -= fraction;
if (frequency <= min){
frequency = min;
}
if (frequency >= max){
frequency = max;
}
setprop(name, frequency);
}
#comm0= axisHandler_radio("/instrumentation/comm[0]/frequencies/standby-mhz", 118.000, 136.000, 0.025);
#comm1= axisHandler_radio("/instrumentation/comm[1]/frequencies/standby-mhz", 118.000, 136.000, 0.025);
#nav0= axisHandler_radio("/instrumentation/nav[0]/frequencies/standby-mhz", 108.000, 118.000, 0.05);
#nav1= axisHandler_radio("/instrumentation/nav[1]/frequencies/standby-mhz", 108.000, 118.000, 0.05);
js2のaxis0の部分(抜粋)
<axis>
<desc>comm0</desc>
<number>
<windows>0</windows>
</number>
<binding>
<command>nasal</command>
<script>radiopanel.axisHandler_radio("/instrumentation/comm[0]/frequencies/standby-mhz", 118.000, 136.000, 0.025)</script>
</binding>
</axis>
投票数:19
平均点:6.32
投稿ツリー
-
Nasalを知ろう、使おう!
(Tat, 2008-4-11 0:54)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-22 20:54)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-4-22 22:38)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-23 10:12)
- Re: Nasalを知ろう、使おう! (hide, 2008-4-23 12:55)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-24 18:55)
-
Re: Nasalを知ろう、使おう!
(toshi, 2008-4-25 3:04)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-25 4:02)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-26 8:07)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-29 17:04)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-30 1:02)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-30 20:44)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-30 23:11)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-5-1 23:25)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-5-2 0:13)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-5-5 14:36)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-5-7 15:23)
- Re: Nasalを知ろう、使おう! (Tat, 2008-5-8 1:19)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-5-7 15:23)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-5-5 14:36)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-5-2 0:13)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-5-1 23:25)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-30 23:11)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-30 20:44)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-30 1:02)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-29 17:04)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-26 8:07)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-25 4:02)
-
Re: Nasalを知ろう、使おう!
(toshi, 2008-4-25 3:04)
-
Re: Nasalを知ろう、使おう!
(hide, 2008-4-23 10:12)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-4-22 22:38)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-7-1 22:25)
- Re: Nasalを知ろう、使おう! (toshi, 2008-7-2 23:50)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-7-3 22:46)
- Re: Nasalを知ろう、使おう! (toshi, 2008-7-4 1:54)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-7-4 1:52)
- Re: Nasalを知ろう、使おう! (Tat, 2008-7-4 15:16)
- Re: Nasalを知ろう、使おう! (sambar, 2008-7-5 1:19)
- 揺れる空母の着艦に挑戦 :-) (Tat, 2008-7-30 10:03)
- Nasal の落とし穴 (Tat, 2008-8-9 16:13)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-11-9 2:34)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-11-9 14:41)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-11-9 22:50)
- Re: Nasalを知ろう、使おう! (Tat, 2008-11-9 23:59)
-
Re: Nasalを知ろう、使おう!
(sambar, 2008-11-9 22:50)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-11-9 14:41)
- Re: Nasalを知ろう、使おう! (sambar, 2008-11-10 19:58)
- Re: ジョイスティック設定とNasal (sambar, 2009-7-11 1:25)
-
Re: Nasalを知ろう、使おう!
(inomaty, 2015-11-16 2:06)
- Re: Nasalを知ろう、使おう! (inomaty, 2015-11-18 22:42)
-
Re: Nasalを知ろう、使おう!
(Tat, 2008-4-22 20:54)