C/C++
rtsp.txt
Associated article: The Real-Time Simulation Protocol
Tags: C/C++ Mobile
Published source code accompanying the article by Jim Ledin in which he presents the Real-Time Simulation Protocol, a package of C++ source code and tools that enables high-performance real-time distributed simulation across a TCP/IP network. Also see RTSP.ZIP.
The Real-Time Simulation Protocol
by Jim Ledin
Listing One
// Distributed Simulation Message Definition
// Declare names for all federates:
federate CommandGenerator, Controller, Plant;
// Define messages. The federate named with each message is the sender.
message CommandGenerator.Update
{
double command;
};
message Controller....


