Jump to content

Search the Community

Showing results for tags 'air manager'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General X-Plane Discussion
    • General Discussion
    • File Library Submissions
    • Help!?!
    • Communal Links
    • Screenshots
    • Videos
    • X-Plane News [Official News]
    • X-Pilot Features
  • Developers
    • Plugin Development
    • UDP Development
    • Aircraft Development
    • Scenery Development
  • Freeware Projects
    • XMidiCtrl
  • Commercial Vendors
    • 4Forces
    • Attitude Simulations
    • Hot Start
    • ITX-Designs (Formerly Icarus)
    • IXEG
    • JGX-Designs
    • JRollon
    • Leading Edge Simulations
    • Maxx-XP
    • PilotEdge
    • RealScenery
    • RealSimGear
    • Real Environment Simulations
    • TOGA Simulations
    • TorqueSim/AFM
    • Uncle Jack Simulations
    • X-Plugins
  • Miscellaneous
    • Hardware
    • Software
  • X-Plane 101
    • I'm New To X-Plane!
    • Best of the Best!
  • Workshop
    • 3D Shop
  • Add-On Reviews
    • Reviews

Categories

  • News
  • Aircraft
  • Scenery
  • Plugins
  • X-Pilot Website
  • Sales & Deals
  • General Information

Categories

  • Aircraft
    • Experimental
    • Fighters
    • General Aviation
    • Gliders
    • Heavy Metal
    • Helicopters
    • Mega-Planes
    • Seaplanes
    • VTOL
    • X-Planes
  • Scenery
    • DSF Scenery Packages
    • Objects
    • Misc Scenery Resources
  • Liveries
    • Business Aviation
    • Experimental
    • Fighters
    • General Aviation
    • Helicopters
    • Heavy Metal
    • Vintage
  • Plugins and Utilities

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. Some of the X-Plane.Org users will probably already be familiar with this software. I realize its a bit of commercial spam. But because the instruments are downloadable for free, we like to expand the number of users, so this expands the number of free downloadable instruments. Me and a friend of mine created a program called Air Manager. It allows you to create your own 2D panel with ready made instruments which you can download for free, but more important, it also allows you to create your own instruments. Creating instrument is very easy, all it takes are the graphics, PNG's, and a little bit of Lua code which you can create with the help of Notepad++. The only code you need for creating a compass for example is this: -- Load and display text and images-- Note that the Z order is chosen hereimg_background = img_add_fullscreen("background.png")img_needle = img_add_fullscreen("needle.png")img_add_fullscreen("backgroundblack.png")img_rotate(img_needle, 270)-- Callback functions (handles data received from X-plane)function new_vspeed_callback(verticalspeed) verticalspeed = var_cap(verticalspeed, -2000, 2000) rotation = verticalspeed * (168 / 2000) img_rotate(img_needle, rotation -90)end-- subscribe functions on the AirBusbus_subscribe("sim/flightmodel/position/vh_ind_fpm", new_vspeed_callback)The data comes directly from X-Plane, it uses the standard X-Plane datarefs. You can also run Air Manager on a separate computer and send the data from the X-Plane computer through TCP/IP. When possible it is rendered by the GPU, it is even is possible to run one instrument on a Raspberry Pi. A short demonstration video: Release 1.1 is almost ready, we're busy beta testing. All 1.0 buyers will receive a free upgrade to 1.1. It will be released next month. 1.1 has some new features and bug fixes, the main new feature is a moving map based on OpenStreetMaps, with the possibility of displaying X-Plane's world data as a layer on top. 1.0 is compatible with Windows and OSX, 1.1 will also be compatible with Linux (also on the Raspberry Pi). You can see www.airrietveld.nl for more information. There's also a wiki which contains all the information you need to create your own instruments.
×
×
  • Create New...