I know my title is probably not the best description of what I am attempting to do, but let's see if I can't explain my situation a little better here.
Basically, what I am trying to achieve is attaching a Simulink model which, when run generates a set of data which I want to display in a graphical interface. I did not make the Simulink model myself, nor have I worked with Simulink before, so I am wondering what the best way to do this would be. The data can change in real time, and I want the display to update with it in correspondence with the output data. This will eventually be used for a game which the user is supposed to control, so the live feedback should be accurate and with minimal delay.
Ideally, if I were making a game I would code the entire thing in either C++ or Java, but the input device we are using to collect the data is dependent on the simulink module for processing the data from it.
I have looked at this from another similar question (Access/Call Simulink from Python):
http://simulinksimserv.sourceforge.net/
It is a server for transmitting the data via XML file, but I am wondering if there is a simpler way to get the data from Simulink into a graphics application written in Java/C/C++/Python that doesn't have the overhead of a server like SimServer.
Any and all suggestions are appreciated.