POLARIS1 Posted June 13, 2014 Posted June 13, 2014 https://itunes.apple.com/il/app/yawc/id495914525?mt=8
Digital Aura Posted June 14, 2014 Posted June 14, 2014 (edited) https://itunes.apple.com/il/app/yawc/id495914525?mt=8 That's not even the same one I had. Mine was called iWarthog. It was for the iphone. This is only for the ipad. Edited June 14, 2014 by Digital Aura
FLEXCopMNPD Posted July 8, 2014 Posted July 8, 2014 iWarthog was removed from the AppStore for some reason :( I have it on my iPhone but not my iPad :( TS, Are there any versions compatible with IOS 5.x? I have an original iPad that I "got back" from my family since they all have the New iPad and don't need the ancient one that they "acquired" from me when I first bought it. FLEX
TigersharkBAS Posted July 9, 2014 Author Posted July 9, 2014 Check out YAWC. Yet another warthog checklist. It should still be available. [sIGPIC][/sIGPIC] Creator of: F-18C VFA-195 "Dambusters" 1998 CAG Livery https://forums.eagle.ru/showthread.php?t=213788 F-18C VFA-195 "Dambusters" July 2001 CAG Livery https://forums.eagle.ru/showthread.php?t=215950 Pilot avatars for DCS Logbook https://forums.eagle.ru/showthread.php?t=221160 How to make a DCS A-10C Panel http://forums.eagle.ru/showthread.php?t=65998
Lt_Berkut Posted July 10, 2014 Posted July 10, 2014 I would certainly be interested... why not start a kickstarter fund raiser? Download My F15c Radar Cheat Sheet Here http://imgur.com/a/sxGoA i7 6700 @4.2 | 32gb DDR4 ram | asus hero VIII | strix 1080Ti VMA-223 Bulldogs [sIGPIC][/sIGPIC] Virtual Carrier Strike Group 1 | Discord |
CodeToad Posted August 19, 2014 Posted August 19, 2014 DCS World "Kneeboard" app Sorry I am late to the party here (just noticed this thread) - please see this post re my in-progress DCS World "Kneeboard" app: open source collaborative multi-device (phone, tablet, laptop, desktop) multi-OS (win, mac, linux, ios, android etc.) "web app" ie everything just runs in a web browser (HTML, javascript) for DCS related info (checklists, maps, annotations, calculators etc) Would love to hear your thoughts, suggestions. Working on an open source "kneeboard" app (browser based, so runs everywhere) for DCS world: maps, checklists, reference, glossary, calculators.
TigersharkBAS Posted August 20, 2014 Author Posted August 20, 2014 CodeToad...thanks for sharing Your idea is intriguing. It would better if all this content was available as a kind of service for anyone to write any kind of UI on top. I mean, separate the data from the presentation. Can a webpage read UDP from DCS and react accordingly like a an app could? [sIGPIC][/sIGPIC] Creator of: F-18C VFA-195 "Dambusters" 1998 CAG Livery https://forums.eagle.ru/showthread.php?t=213788 F-18C VFA-195 "Dambusters" July 2001 CAG Livery https://forums.eagle.ru/showthread.php?t=215950 Pilot avatars for DCS Logbook https://forums.eagle.ru/showthread.php?t=221160 How to make a DCS A-10C Panel http://forums.eagle.ru/showthread.php?t=65998
jay43 Posted August 20, 2014 Posted August 20, 2014 Will this be available for android or are you only making it for ipad. Eagles may soar high but weasel's don't get sucked into jet engines. System Spec. Monitors: Samsung 570DX & Rift CV1 Mobo: MSI Godlike gaming X-99A CPU: Intel i7 5930K @ 3.50Ghz RAM: 32gb GPU: EVGA Nvidia GTX 980Ti VR Ready Cooling: Predator 360 Power Supply: OCZ ZX Series 80 Plus Gold Drives: Samsung SSD's 1tb, 500g plus others with OS Win10 64 bit
TigersharkBAS Posted August 21, 2014 Author Posted August 21, 2014 My app is iOS only. I have neither the time or resources to learn how to make stuff for Android. CodeToad though is proposing something that is platform independent as it will be web browser based. [sIGPIC][/sIGPIC] Creator of: F-18C VFA-195 "Dambusters" 1998 CAG Livery https://forums.eagle.ru/showthread.php?t=213788 F-18C VFA-195 "Dambusters" July 2001 CAG Livery https://forums.eagle.ru/showthread.php?t=215950 Pilot avatars for DCS Logbook https://forums.eagle.ru/showthread.php?t=221160 How to make a DCS A-10C Panel http://forums.eagle.ru/showthread.php?t=65998
Ninja1959 Posted August 21, 2014 Posted August 21, 2014 Great work congratulations........ [sIGPIC] [/sIGPIC]
CodeToad Posted August 22, 2014 Posted August 22, 2014 (edited) CodeToad...thanks for sharing Your idea is intriguing. It would better if all this content was available as a kind of service for anyone to write any kind of UI on top. I mean, separate the data from the presentation. TigerSharkBAS - thank you. You and other people on the forum really set the standard for helping us DCS fans and organizing information like you do on your wiki ! Yes, what you suggest - separating the data from the presentation - is good software engineering practice and I'd be happy to coordinate on how how to do that best. Here or on PM ? Couple of thoughts: 1. there will probably still be some form of markup (think title, description for glossary entries or "steps" for checklists and then some markup for things like keyboard shortcuts or links to manual pages etc.) So one question would be invent new kind of markup or use HTML ? 2. secondly, this will complicate things a little bit since the data will need to be parsed and compiled into code (Java for Android, ObjC for iOS, HTML for web), so that adds steps to the process between "adding the data" and "seeing it work" for testing. Not a big deal for a software engineer, but more work for someone who doesn't (and probably shouldn't need to) understand tools like php, python or other scripts to do the compilation from data into html. My intention was to open the data creation and editing up to a very broad audience, thus allowing easier and more numerous contributions. You just need a text editor and a browser: edit, save, reload (repeat). But lets think, perhaps there is an easy way to do that with the data separated out (loading the data file with javascript and generating the necessary HTML via javascript only) ? Can a webpage read UDP from DCS and react accordingly like a an app could? I am guessing you are asking because you want to send DCS telemetry directly to a browser, for example to show instrument clusters or realtime TacView type displays ? There is WebRTC (UDP). It is designed for real time communication - think Audio/Video. But one could use WebRTC generic data channels for telemetry over UDP. (Browser support) If you are willing (and DCS is able) to go TCP, then WebSockets are good, low latency, broadly supported way to do that. You could then also use a node.js server on your DCS machine to read the UDP streams and socket.io library for easy distribution to clients. There are a lot of good free as well as commercial graphing tools and dashboards tools available (Highcharts, Raphael.js, Google Chart widgets, riemann realtime dashboard). For TacView like 3D visualizations WebGL is available in any modern browser (and >=iOS 8 Safari). Somewhat related examples: spacecraft telemetry visualizer, Cesium library for creating 3D globes and 2D maps showing realtime data. World flight route visualization, and contrails Edited August 23, 2014 by CodeToad Working on an open source "kneeboard" app (browser based, so runs everywhere) for DCS world: maps, checklists, reference, glossary, calculators.
Recommended Posts