Jump to content

Rabso

Members
  • Content Count

    38
  • Donations

    $0.00 
  • Joined

  • Last visited

Posts posted by Rabso


  1. 1 hour ago, tamba765 said:

    SimBrief has all the aircraft profiles. I also used PFPX for several years, but SIMBrief is a very good flight planner.

    Is not about profile only, I use PFPX in fuel bias for all my aircrafts list, with years I managed to reach very accurate planning. It's easy to plan routs, I can see DCT routes for open space, I can see space restrictions and much more. PFPX is amazing program for very deep realism.

    • Like 1

  2. Nice choice, the increased resolution is worth the size sacrifice IMO.  But then again if your visual acuity is not up to it that enhanced resolution may not matter.

     

    Maybe not the best, but my next upgrade will be something like this: https://www.amazon.com/Samsung-S34E790C-34-Inch-Professional-Monitor/dp/B00Q7VCSGU/ref=cm_cr_arp_d_product_top?ie=UTF8&th=1

    I got a gtx 1070 to drive it, but even that may struggle a bit on higher graphics settings.  A friend of mine just bought one of these, and sort of "hates it", because it makes his other monitor (HD) in his two monitor setup look awful, and he complains about adjusting to all that extra "real estate".

     

    Samsung S34E790C is really nice choice, I will go for 4K in feature :)

     

    When I upgraded earlier in the year I went for a 32" 2560x1440. I have the AOC Q3277PQU - excellent screen and build quality and it works perfectly with my GTX 970 card. I looked at a 27" screen with the same resolution but found that the menus in FSX were just too small for me to read comfortably and they're not scalable. 32" seems to be the sweet spot for QHD and it was a bargain at only £335 when I bought it (now looks to be about £385). It has the same screen as the BenQ BL3200PT, which is another excellent monitor (but quite a bit more expensive).

     

    AOC Q3277PQU is really nice with bigger screen, the only downside to me that it's not IPS, I have checked 27" and it's fine for me (for some one upgraded from 24" :)

     

    thanks


  3. Hello all,

     

    I want to buy new monitor and upgrade from Full HD to 2K monitors, I use it mainly to fly FSX and DCS.

     

    I have GTX 970 and TrackIR5. No plan for VR at this moment and 4K monitors are way expensive and need strong graphic card.

     

    I have searched a lot but I am kind of confused which is better; Ultrawide (2560 x 1080 | 21:9) or WQHD (2560 x 1440 | 16:9).

     

    Based on my budget I found LG 34UM68-P 34-Inch as of Ultrawide and Acer H277HU 27-Inch as of WQHD.

     

    I would love to see your opinions guys, thanks


  4. Scotflieger, I have done the trick :Big Grin:

     

    here is my code to share with all:

    function APU_SEL_SWITCH_start_sequence()
        time1 = ipc.elapsedtime()
    
        while true do
            time2 = ipc.elapsedtime() - time1
    	if time2 >= 2000 then
                break
            else
                APU_SEL_SWITCH_start ()
            end
        end
    
        APU_SEL_SWITCH_on ()
    end
    

    to explain,

    - time1 will note the function start time

    - entering a loop to keep the APU selector on Start position as long the time difference time between time2 and time1 less than 2 seconds.

    - time2 will keep increasing as long the loop is going on.

    - once difference time be more than 2 seconds, the loop will break, and then APU selector will go to On.


  5. Thanks Scotflieger for your reply,

     

    well I have already read all the above documents but still did not get why 536890912 has been used to control instead of direct position value as per following giving information:

    unsigned char	FCTL_Speedbrake_Lever;				// Position 0...100  0: DOWN,  25: ARMED, 26...100: DEPLOYED
    

    So I went through the whole PMDG 777 SDK again and found the reason (your reply gave me the hint); the decimal 536890912 is equates to x20000000 in hexadecimal which is a pre-defined mouse flag for mouse left click simulation (it's nice idea to control rotary knobs or to trigger a two position switch without checking its previous position).

     

    But still something I can't understand:

    As per above code, FCTL_Speedbrake_Lever has many positions, 25 is for Armed position. Yes Guenseli used the x20000000 (mouse click simulation) to arm the lever but why when use the value 25 will not do it?

     

    I used LINDA Tracer to get what is going on, I armed the Speedbrake lever by mouse and found that the switch_498_a (speedbrake lever) = 100 and full up is = 400.

     

    So I did this code:

    function SPEEDBRAKE_ARM ()
        if ipc.readLvar("switch_498_a") < 100 then
             ipc.control(PMDGBaseVariable +498, 100)
        end
    end
    

    but did not work :sad:

     

    I let the LINDA tracer feed the value (once 255 and other 100) and it works with the following result:

    WRITE0[8504]  7321,  60 bytes: 53 4C 3A 73 77 69 74 63 68 5F 34 39 38 5F 61 3D  SL:switch_498_a=
    32 35 35 00 00 00 00 00 00 00 00 00 00 00 00 00  255.............
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00              ............
    WRITE0[8504]  735F,   1 bytes: 01                                               .
    WRITElua 7321,  60 bytes: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00              ............
    WRITElua 735F,   1 bytes: 00                                               .
    LUA.0:  [L] LVar: switch_498_a = 255
    WRITE0[8504]  7321,  60 bytes: 53 4C 3A 73 77 69 74 63 68 5F 34 39 38 5F 61 3D  SL:switch_498_a=
    31 30 30 00 00 00 00 00 00 00 00 00 00 00 00 00  100.............
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00              ............
    WRITE0[8504]  735F,   1 bytes: 01                                               .
    WRITElua 7321,  60 bytes: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00 00 00 00 00 00 00 00 00 00 00 00              ............
    WRITElua 735F,   1 bytes: 00                                               .
    LUA.0:  [L] LVar: switch_498_a = 100
    

    I know it's some where in above bytes but don't know to put it in my code.

     

    sorry for this big question


  6. Hi all,

     

    I am new to LINDA and LUA. and I have been reading all about LUA and take some tutorial (in general I have little background about programming as it's my hobby).

    However, I am stuck at one point seems can't get it! It's about the parameter of ipc.control

     

    let's talk about PMDG 777, I have this example (from LINDA 777 Module):

    function PMDG_Spoilers_arm ()
        if ipc.readLvar("switch_498_a") < 100 then
        ipc.control(74614, 536870912)
        end
        DspShow ("Splr", "arm")
    end
    

    From above, the control number is 74614 and by omitting 69632 you will get 4982 which is referring to EVT_CONTROL_STAND_SPEED_BRAKE_LEVER_ARM

     

    The question is; what is the meaning of 536870912? I tried a lot to figure out it but no result!

     

    in PMDG_777X_SDK.h you will see some Controls with its position, but usually they are 0, 1, 2 .... (max I saw is 150)

     

    in LINDA 777 module I found sometimes 128, 265 or the above one.

    could some one explain more for me

     

    thanks

     


  7. yes am looking for accuracy of the simulation.

     

    I am aware of the OnPress and OnRepeat then OnRelease, but this is only applicable for buttons where I am using switch in my Warthog throttle.

     

    The idea is when I move the APU switch of my warthog to on, LUA will turn the 777 APU to start for 5 seconds then back to On


  8. I am trying here to do small LUA scripts, after reading a lot about LUA, am still unable to do it.

     

    The APU selector switch in 777 has off, on and start positions; in real life you should switch to Start for 5 seconds then release the switch which will go back to on. I am trying to simulate that.

     

    I did the following code:

    function APU_SEL_SWITCH_start_seq ()
    	APU_SEL_SWITCH_start ()
    	ipc.sleep (5000)
    	APU_SEL_SWITCH_on ()
    end
    

    however, in above code there is no any hold for the Start position, the ipc.sleep is just to give a break of 5 seconds.

     

    could any one help me with the hold code?


  9. I don't use the LINDA.. probably should take a look but I haven't; so, what you are trying to do is program a couple of switches that are in the throttle that are used with you go into the thrust reverse region of the throttle movement. It's easy to do if you understand what you are doing. Also, FSUIPC has a very extensive user manual and an active user forum here: http://forum.simflight.com/forum/30-fsuipc-support-pete-dowson-modules/

     

    The TM throttles are axis controllers exept for the reverse thrust action. When you lift the throttle and move it backward it stops being an axis and becomes a switch.  The PMDG product does not care how you program your flight simulator platform to recognize those switches, which is why I have recommended getting help from FSUIPC.  As a note, P3Dv3 will recognize controller buttons almost like XPlane and is easy to set up things like this.

     

    thank you a lot for your feedback. I am really thinking to move direct to P3Dv3.

     

    just question, can you tell me how you are using your joystick other than LINDA way? is it through TARGET?

    really it's not matter for me to use just LINDA, I just need a working easy way. thanks


  10. Hi steve,

     

    I have been using FSX with DX10 long time now, but up to date I could not fix one issue!

     

    I am flying online (IVAO) with full mode screen. Every time I run the software IVAP the whole screen will turn into black, so the only solution am doing now is to connect online while the screen black and then hide IVAP which will make it ok again. this solution will not allow me to use text communication with the ATC.

     

    Could you please advise if you have any idea about that?

     

    thanks

     

     


  11. No, I am using it on a single machine, I guess by having the setting set 'fsx plan to wx file' in the fmc, all i need to do is export the wx file from PFPX?

     

    No need to export from PFPX; ASN will do all. After requesting the flight plan in your FMC, the 777 will create the FSX plan and then the ASN will generate the WX file, at end the FMC will load this WX file.

     

    Use PFPX for planning and ASN for weathering.


  12. Hi guys,

     

    Fresh flight and I cannot load the winds at all now. I get the above error message at the start of the flight.

     

    I am thinking that I should just do a fresh install, I'll get back to you

     

    After loading the flight plan into FSX, ASN will detect that and then export the wx data to [FSX]\PMDG\WX

     

    If this didn't happen; then are using the ASN in a network configuration?

    I am using the ASN in a network configuration and unfortunately the ASN did not detect the FSX flight plan.

    I waiting ASN team to reply about this issue

×
×
  • Create New...