Jump to content
The simFlight Network Forums

Alhard Horstmann

Members
  • Posts

    170
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Alhard Horstmann

  1. Hi Pete, I do not want to program myself a little Add-On for reading the current (!) FSX weather. Do you know about a small program , which reads the current METAR out of FSX ? How can I use FSUIPC ? With FS-Interrogate I found a first step. Here I found a thread http://www.fsdeveloper.com/forum/threads/simconnect-weather.5254/ but the add-on is no more available. thanks Alhard
  2. Great thanks, Pete. There is nothing outstanding for now. I really appreciated, as ever, your strong and prompt help and I learned a lot. All the Best! regards Alhard, using FSUIPC since more than 10 years.
  3. Result with P3D. I tested with default Maule. All Door toggle works fine with offset togglebits 15. It doesn't work with TOGGLE_AIRCRAFT_EXIT parameter 15 for all doors, but single doors with par 1,2,3. So for P3D, which is for now not my favourite Sim, I have a solution . regards Alhard
  4. Pete, I missed to send the aircraft.cfg of the Beaver in my virgin PC: [exits] number_of_exits=3 exit.0=0.4 // (0=Main 1=Cargo 2=Emergency) exit.1=0.4 // (0=Main 1=Cargo 2=Emergency) exit.2=0.4 // (0=Main 1=Cargo 2=Emergency) Alhard
  5. Hi Pete, I tested now the behaviour on a very new Windows an FSX installation. I call it my "virgin" test PC. Attached is the complete log file. The behaviour of the Beaver is always still opening/closing ONE door only. My objectiv is, to assign ONE button (individual selected) to toggle Opening/Closing ALL (!) doors. In my Simmer group, which I moderate, all want to have this feature. As FS Control " TOGGLE_AIRCRAFT_EXIT " is unfortunately not working on my 2 systems, I was looking for an alternative = KEYPRESSES. PLease check the log file and please tell me also why always the ATC_MENU_CLOSE function is operated. I checked all button assignments in FSX and in FSUIPC, but I can't find any assignment to this function. Thanks and best regards Alhard Problem Open Doors FSUIPC4.log
  6. Hello Pete, I enabled the logging and attached are my results. There are still some question marks. Please give advise for more tests. Have a pleasant Easter Weekend. Thanks, Alhard Tests Close-Open Doors FSUIPC.txt
  7. Hi Pete , thanks for your extensive explanations. Regarding your activities, don't be forced by my questions to respond shortly and deeply, Just tell me, "I will respond later" . That would be fair. I am retired and I have time. So now I will use the Event logging for my investigations. And yes, I also have some experience with LUA. And yes, I will update. :-) regards Alhard PS: Do you know that Erlangen, where I live, is the twin city of Stoke-on-Trent
  8. Hi Pete, I am sorry , I am stuck My specs: WIN7-64PRO, FSX SP2, FSUIPC Version is 4.965, Aircraft: default C172, I wrote this macro again following your advise [Macros] 1=OpenAllDoors 1.1=W3367=0 PT,0,K69,9 -{Key press: shft+E}- 1.2=W3367=0 PT,0,K49,8 -{Key press: 1}- 1.3=W3367=0 PT,0,K50,8 -{Key press: 2}- But the macro doesn't appear. Then I tried with button "offset byte togglebits" The assignment whether 15 or 3, still opens left door only (and toggles) : My C172 aircraft.cfg shows this [exits] number_of_exits=2 exit.0=0.4 // (0=Main 1=Passenger) exit.1=0.4 // (0=Main 1=Passenger) 26=PT,6,Cx0D003367,x0F -{offset byte togglebits, offset 3367}- or 26=PT,6,Cx0D003367,x03 -{offset byte togglebits, offset 3367}- I tried it also with the FSX default DeHavilland_Beaver_DHC2 with 4 doors [exits] number_of_exits = 3 exit.0 = 0.4 // (0=Main 1=Cargo 2=Emergency) exit.1 = 0.4 // (0=Main 1=Cargo 2=Emergency) exit.2 = 0.4 // (0=Main 1=Cargo 2=Emergency) with the button offset 3367, just one (left) door opens. Sorry and regards Alhard
  9. Great thanks, Pete, That is exactly what I wanted to know. I will shortly reconfigure my FSUIPC and A/C .CFG and then I will report. regards Alhard
  10. Thanks Pete for your quick response. I am sorry, but there are still problems: My FSX SP2, FSUIPC Version is 4.964, Aircraft: default C172, Here are my remarks: 1. There is no "Offset byte clear" , I used for now "Offset byte clrbits" 2. With these button assignments, only left door opens and closes. 6=PT,6,Cx09003367,x0F -{offset byte clrbits, offset 3367}- 7=PT,0,Cx01003367,x0F -{offset byte set, offset 3367}- When I open right door with shE-2 sequence and try to close with button PT,6 then left door opens. 3. I now assigned to button PT,13 the reedited macro "AAOpen" [Macros] 1=OpenAlDoors 1.1=K69,9 -{Key press: shft+E}- 1.2=K49,8 -{Key press: 1}- 1.3=K50,8 -{Key press: 2}- see here: 8=PT,13,CM1:1,0 -{Macro AAOpen: OpenAlDoors: OpenAlDoors: OpenAlDoors}- Now both doors toggle open/close. That's fine. But I need to use the condition "W3367=0" as written before. How can I include this condition in my macro? 4. With your proposal to use the button offset assignment I have to assign at least two buttons for opening and close. As I understood, is the door opening procedure a "toggle" function, so I can easily use the macro assignment. I need the conditional macro, cause some people can open one door only by the "Sh-E" sequence and then I want to close the doors conditionally. I hope I made my problem clear. regards Alhard
  11. Hi Pete, here is another question. My task is to write a macro for one button to open all doors. I read your examples in advanced programmer doc, but I failed. Here is what I wrote first to test my sequence for the button "PT,0" : ; if both doors are open 16=W3367=3 PT,0,K69,9 -{Key press: shft+E}- 17=W3367=3 PT,0,K49,8 -{Key press: 1}- 18=W3367=3 PT,0,K50,8 -{Key press: 2}- ; if both doors are closed 19=W3367=0 PT,0,K69,9 -{Key press: shft+E}- 20=W3367=0 PT,0,K49,8 -{Key press: 1}- 21=W3367=0 PT,0,K50,8 -{Key press: 2}- ; if door 1 is open, then close 22=W3367=1 PT,0,K69,9 -{Key press: shft+E}- 23=W3367=1 PT,0,K49,8 -{Key press: 1}- ; if door 2 is open, then close 24=W3367=2 PT,0,K69,9 -{Key press: shft+E}- 25=W3367=2 PT,0,K50,8 -{Key press: 2}- This sequence works fine. Now I tried to create a macro control like this: Entry in INI file: [MacroFiles] 1=AAOpen 2=AAPM GC Macro file AAOpen: [Macros] 1=OpenAlDoors 1.1 W3367=0 PT,0,K69,9 -{Key press: shft+E}- 1.2 W3367=0 PT,0,K49,8 -{Key press: 1}- 1.3 W3367=0 PT,0,K50,8 -{Key press: 2}- Macro file AAPM GC (just for test purpose) [Macros] 1=MAP Capt=C2999,1 2=NAV Capt=C2999,2 3=VOR Capt=C2999,3 The macro from your example "PM GC" is displayed correctly in the FS controls list. My macro doesn't appear. What is wrong? Please help. Thanks, Alhard
  12. Hi Pete, thanks a lot!! That's exactly what I wanted to know. It would be great, if you would write a "white paper" about all these "secrets". Cause there are a lot of rumors about FS9/FSX interfaces. I think many of my IT collegues and Simmers are interested in these facts as well. But I know, you have other priorities :-) Alhard
  13. Hi Pete, As I am currently very interested in the deeper functionality of FSUIPC and Simconnect, I may ask you, if you know about some documentation like a "white paper" about these topics. My interest, as an IT man, goes to some questions like: How gets FSUIPC access to the FSX data? How gets Simconnect access to FSX data? What protocols are used (TCP IP, named Pipes, Queues, etc) ? What roles are LVARS playing? What roles are the OFFSETS playing? How is the "cooperation" between both access modes ? Thanks, regards Alhard
  14. Yes SPAD is very flexible in programming the Saitek devices. I am now in contact with the developper and since yesterday night, the Offsets for the Airbus are available in Beta version for Betatesters.Btw.: the Forum is here http://www.fsgs.com/forum/ Have a look in the Video to be seen in the forum. and I would be happy if other Wilco Airbus pilots give me a short feedback about their Saitek configuration with FSUIPC and SPAD.neXt. Alhard
  15. Thanks for that clarification, Pete Misunderstanding: I ment SPAD does not yet handle offsets for the Wilco Airbus. I found that term in one of your documents. May be wrong. I ment the function behind an offset.
  16. Hello Pete, I want to connect my Saitek devices to the Wilco/Feelthere Airbusses. This is a wish since years. So fact is for now, there is a pretty good documentation about all (!) the Wilco A320 offsets including the software from Erich Marciano "FSUIPC Exporter". And there is a new software called SPAD.neXt which connects the Saitek devices in a clever way to all FSX standard aircrafts, using FSUIPC functions and also LVARS, no Offsets. Unfortunately the Airbus doesn't provide the offsets as LVARS. And unfortunately the Saitek devices with all their buttons and displays do not appear in FSUIPC. Now my question: can I create LVARS with LUA programming or with other solutions ? I didn' find any example in your FSUIPC SDK. How did you create the tokens for iFLY or PMDG aircrafts ? thanks Alhard
  17. Hello all Simmers, Since long time I am looking for a solution to connect AND control my FT A320 by Saitek devices Multi Panel and Radio Panel. As the FT A320 offsets are not standard FSX offsets, it is not possible to connect e.g. "set altitude" to the Multipanel. Now since some month there is a new software available called SPAD.neXt (Saitek Panel Advanced Drivers neXt Generation). This is a new driver software for the Saitek devices. But unfortunately this software needs LVARs for connections and the FT Airbus doesn't provide LVARS. But a complete list for these special Offsets is available by "FSUIPC Exporter". For an extra development to integrate the FT busses in his product, the developer needs information about how many pilot are interested in that implementation. So please respond as much as possible on my "survey" here. Thanks and regards Alhard
  18. hi Pete, great thanks. I will try. I made some experiments with LUA in the past, but now I did not find this ext.run feature. best regards Alhard
  19. Hi Pete, in the context of this thread I have a simple question: how can I start a program in FSUIPC (e.g. : XYZ.EXE) by pressing a button? thanks and best regards Alhard
  20. OK then. I studied now the SDK and I feel, this will be a challenge for me. BUT, I wiil try to get my weather on a map.together with the FSC team. Thanks again for your quick help. I will come back to you, if I need more deaper advises. regards Alhard
  21. hi Pete, my question is: can I get / read via FSUIPC the weather data (direction, speed) of selected (e.g. by ICAO code) weather stations of the FSX weather engine. The weather is configured by me through the FSX weather page. can I read the anwers in your SDK?. I didnt do it yet. My main question though was for the FSC team of Volker Heine, to show these data on their FSC map. thanks Alhard
  22. hi Pete, my question is FSUIPC AND FSCommander (Volker Heine) related. if its not too much work for you, please read this link and my posts: http://forum.simflight.com/topic/76555-weather-transfer-from-fs9fsx-built-in-weather/ I know, you can help, as always! thanks and regards Alhard
  23. Hi Pete, as I didn't find a thread with my tags, I created a new one. I am looking for all the information about position, size and color of all the messages showing up in the FSX main window. In the meantime I found the files and sections of nearly all these informations. But one is left: Where is the information of the horizontal scrolling message (e.g. ATIS) stored? Where is the color and where the location stored? I found in the .FLT file the section "message windows", but this obviously is not the place of storage. When I change the position and the size (e.g.: screencoords) in the file, nothing happens. When I change the position and size in the running FSX window and then save the .FLT file, after reloading this .FLT file the previously stored pos. and size is surprisingly restored. The only help for changing e.g. ATIS into white is your parameter "WhiteMessages". How are you doing this??? thanks and regards Alhard Tags: whitemessages× TextColor.1× BackGroundColor.1× InfoLowerLeftTextColor×
  24. Hi Pete as I have a personal question regarding this issue above, I need to send you a PM. Is this possible? I tried it here with the message system, but I got this error message: -------------------------------------------------------- Compose New Message The following errors were found The member Pete Dowson can not use the messaging system This personal message has not been sent --------------------------------------------------------------- best regards Alhard Horstmann PS: I think you got already my personal email adress in the past.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.