Jump to content

chrilith

Members
  • Posts

    78
  • Joined

  • Last visited

  1. Great! If you can send me your new code so that I can check the problem. Also, I don't see why there is a problem with the image colors, may be a buffer not properly read or written, but this doesn't occur using simple lua script or Flight Simulator...
  2. @algerad3, great job! Could you tell me what you've fixed in the DLL code? Thanks!
  3. Please check here: http://forums.eagle.ru/showthread.php?p=2794577#post2794577
  4. Indeed, I updated the links. Those from the previous message were good. I can't help with the Mig-21 but as long as you know how to access this variable from a DCS Lua script you may be able to do what you want with it.
  5. You mean that "Passerelle" is not working for you?! Envoyé de mon D6603 en utilisant Tapatalk
  6. Quite interesting, thank you C0nnex. I'll add this to my documentation then.
  7. Ok, personally didn't have problem pushing more than 10 fps to the FIP. But I know there are problems with DO after 7.0.39 if your are using the 32 bit API on a 64 bit system. I mean API not driver.
  8. Me again :) Well, there are lots of .cs/.xaml files missing in the repo in all 3 projects. Also, what version of Visual Studio are you using? I don't see an .sln file which groups the 3 projects. Why are you building using a posh script instead of Visual Studio? Thanks!
  9. Ok will try to take a look at it then. Last questions first: - Are you on a x64 or x32 Pc? - Flightpanels is compiled as a 32 or 64-bit app? - What driver version are you using for the directoutput sdk? Thanks
  10. OK. Is this problem occuring only with your PC? Is it OK for pdmarsh? Is the current failing code available somewhere so that I can check what's going on? When does it freeze exactly? and doing what? Thanks
  11. I just published a new preview of Passerelle with window capture support!
  12. A new feature is now in preview. You can now stream a window to your Flight Panel Instrument. This simple script shows you how to stream the task manager window. require "passerelle" passerelle.addPage("SFIP", 1, 1, true); function capture() local bitmap = passerelle.captureWindow("TaskManagerWindow", nil, 0, 0, 100, 100); passerelle.setImage('SFIP', 1, 1, 0, bitmap); collectgarbage(); end while true do capture(); passerelle.sleep(50); end This preview version can be downloaded from here: https://github.com/chrilith/Passerelle/releases The updated documentation is here: https://github.com/chrilith/Passerelle/wiki Chris
  13. Hi ArturDCS, I'm the developer of the Passerelle Lua Module (formerly Saitek module for Lua) which is used in some Lua module in DCS. Could you be more specific about your problem?
  14. You can try to replace the saitek.dll with the new one from the Legacy folder. It may be a bit more stable. To have a perfect stability the existing Lua scripts need some rewrite to use synchronous callbacks.
  15. Hi Hawkeye60, 1. Passerelle is an update to the old saitek DLL. Unless you want to work on developing your own module it will not add much functionality to what you are currently using. The real new amazing feature will come in the next version! algerad3 is aware of it, hopefully he will find time to evaluate it properly when I will have a preview version :) 2. Used to accept with some other projects, why not for this one :) The bigger thank is really to see more and more users use my software! 3. About using multiple module using export may be tricky indeed. I personaly haven't found time to look at it yet :( The best is to contact the various authors and see how they can work together. perhaps algerad3 can help on this issue. I'm thinking anyway to create a base lua script that can load more modules to ease integration. Have to find time for this and motivation too... my work oesn't seem to be used as much for now Thank you for your message :)
×
×
  • Create New...