Jump to content

Simpit Software from SDA


HJPuhlmann

Recommended Posts

@Marcq: Our next project is the F-14. Try it yourself for the F-4.

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

Where can I actually find the F-4 here in the forum? I searched, but found nothing.

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

Where can I actually find the F-4 here in the forum? I searched, but found nothing.

 

I suspect we are talking the A-4E Community Project.... And I'd love to see that too, given that I fly a Skyhawk sim with Ikarus, pretending to be an A-10 ;-)

 

(For some reason the video wont embed properly....)

 

img_1503-1024x768.jpg

 

img_1507-1024x768.jpg

 

:)

 

SeanG


Edited by NZ6258
Fixed Video Link
Link to comment
Share on other sites

Just send me a link. The link to the video does not work. I need more and no video anyway. Sorry.

 

I can not do anything with the information.


Edited by H-J-P

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

Just send me a link. The link to the video does not work.

 

The A-4E Community Project is available here:

https://forums.eagle.ru/showthread.php?p=3692003#post3692003

 

There is also a Discord server set up for the development of the mod, which would give you direct access to the team.

 

Also, at this link:

https://github.com/Merker6/community-a4e-c

Is a direct link to the Github repository, which contains Cockpit Arguments which may be helpful for your development :)

 

If there is anything I can do to help, let me know.

 

Cheers

Sean

Link to comment
Share on other sites

Your A-4E are very special. You do not use lua - files as I have seen. Why are you doing something like you did?

 

What is the idea behind it?

 

Sorry, your A4 is not compatible with Ikarus and our export script. We are not there with that.

 

But you could do it yourself. It would be possible with a lot of know how on the Lua interface.


Edited by H-J-P

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

Question there.

 

What do you mean by this?

 

Otherwise, there is a way to reduce the reaction time on a key press? Indeed, if I click too quickly on a button, sometimes it does not take into account. I have to push the click of the mouse a little longer than a simple click. :smartass:

Link to comment
Share on other sites

I'm not sure if the issue here is with IKARUS itself or the DCS Export Script. Here is what I'm encountering in the FA18:

- When on the ground in the hornet the buttons/switches respond very swiftly.

- When I take off things start to lag ever so slightly.

 

Basically when I use IKARUS buttons they lag in the air, but on the ground they do not. What I mean by lag is I push a button on the touch screen and IKARUS is ever so slightly to respond.

 

8700k; 32gb RAM; 2080TI

 

IKARUS Version 1.5.5.455

 

This is my export Config:

ExportScript.Config = {}

ExportScript.Version.Config = "1.2.0"

 

-- Ikarus a Glass Cockpit Software

ExportScript.Config.IkarusExport = true -- false for not use

ExportScript.Config.IkarusHost = "127.0.0.1" -- IP for Ikarus

ExportScript.Config.IkarusPort = 1625 -- Port Ikarus (1625)

ExportScript.Config.IkarusSeparator = ":"

 

-- D.A.C. (DCS Arcaze Connector)

ExportScript.Config.DACExport = false -- true for use

ExportScript.Config.DAC = {}

-- first hardware

ExportScript.Config.DAC[1] = {}

ExportScript.Config.DAC[1].Host = "127.0.0.1" -- IP for hardware 1

ExportScript.Config.DAC[1].SendPort = 26026 -- Port for hardware 1

ExportScript.Config.DAC[1].Separator = ":"

-- secound to n hardware

--ExportScript.Config.DAC[2] = {}

--ExportScript.Config.DAC[2].Host = "127.0.0.1" -- IP for hardware 2

--ExportScript.Config.DAC[2].SendPort = 9092 -- Port for hardware 2

--ExportScript.Config.DAC[2].Separator = ":"

 

-- Ikarus and D.A.C. can data send

ExportScript.Config.Listener = true -- false for not use

ExportScript.Config.ListenerPort = 26027 -- Listener Port for D.A.C.

 

-- Other

ExportScript.Config.ExportInterval = 0.05 -- export evry 0.05 secounds

ExportScript.Config.ExportLowTickInterval = 0.05 -- export evry 0.5 secounds

ExportScript.Config.LogPath = lfs.writedir()..[[Logs\Export.log]]

ExportScript.Config.ExportModulePath = lfs.writedir()..[[scripts\DCS-ExportScript\ExportsModules\]]

ExportScript.Config.Debug = false

ExportScript.Config.SocketDebug = false

ExportScript.Config.FirstNewDataSend = true

ExportScript.Config.FirstNewDataSendCount = 100

Link to comment
Share on other sites

Thanks for the hint. Maybe it helps someone. I do not see your problem here.

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

@Guppy: By the way, you have built a very nice cockpit. Congratulations.

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

Thank you!

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

Bug repport

Module : a-10C

DCS ID 241 :3 way swith : when clich up does not what it it suppose to do

Detail :

how to reproduce:

- turn on CMSP / Warning Panel

- Mode Knob to manuel

- clic up DISP 3 way switch

now it is suppose to be able to edit profile but it simply reset profil

to compaire, go use the swtich in cocpit

 

also, it seem that it make my DCS.open beta crash

 

thank

Raab


Edited by raymondabel
Link to comment
Share on other sites

I'll take a look at that. No question. But a switch can not cause such a problem as you describe it. Thank you for the report. Raab.


Edited by H-J-P

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

Hello,

 

L-39 is missing from latest build.

 

L-39 build from a month or two ago (great new gauge art!) has several bad bugs:

 

- Engine RPM needles do not work.

- Radar alt does not work in any form.

- Oxygen blinkers don't sync with DCS.

- I note the metric IAS did not work when I tried switching to it.

 

These go across all L-39.ikarus versions. I can run my Ikarus version from 2017 and everything works (but no new art for gauges).

 

Thanks,

Link to comment
Share on other sites

The files for the L-39 are missing? Strange. Please get the latest version from here: https://github.com/H-J-P/Ikarus

Simpit Software by SDA "SIMPIT DEVELOPER ASSOCIATION"

https://github.com/s-d-a/DAC, https://github.com/H-J-P/Ikarus/releases/latest, https://github.com/s-d-a/DCS-ExportScripts, Deutsches Forum, English Forum

MSI Z270; INTEL Core i7-7700K, 4x 4,8GHz, Quad-Core "Kaby Lake", GeForce GTX 1080 Ti, TrackIR 5 Pro, TM HOTAS Warthog, MFG Crosswind, Win 10 x64 Pro, 3 x SSD

 

keep it simple ... the 1000 small things ...

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...