<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/openrti/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/openrti/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 10 Aug 2024 14:39:32 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/openrti/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/openrti/wiki/Home/?limit=25#a651</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello. I've been trying to write some unit tests for my HLA application using OpenRTI (1516e bindings).&lt;/p&gt;
&lt;p&gt;Is it possible to create two different RTI ambassadors (and therefore different federate ambassadors), and have them connect to the same thread mode?&lt;/p&gt;
&lt;p&gt;I.e. I'm using the following code&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="n"&gt;rti_ambassador&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="n"&gt;connect&lt;/span&gt;&lt;span class="p"&gt;(...,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s"&gt;"thread://"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;to create an ambassador. But how do I make the second ambassador connect to the same federation as the first one?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matheus Gomes</dc:creator><pubDate>Sat, 10 Aug 2024 14:39:32 -0000</pubDate><guid>https://sourceforge.netb446650c01ffd6df4ac4c796a64a6b704efcc78c</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/openrti/wiki/Home/?limit=25#217e</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Good afternoon. I'm not very good at installing the program, if more stringent provision?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">EKATERINA</dc:creator><pubDate>Thu, 17 Feb 2022 07:00:21 -0000</pubDate><guid>https://sourceforge.netd5b101fb33ce753a094b432dcd84000f2b081d7f</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/openrti/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="openrti"&gt;OpenRTI&lt;/h1&gt;
&lt;p&gt;An open source HLA/RTI implementation.&lt;/p&gt;
&lt;h2 id="supported-platforms"&gt;Supported Platforms&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Linux, tested on&lt;ul&gt;
&lt;li&gt;RedHat 5&lt;/li&gt;
&lt;li&gt;RedHat 6&lt;/li&gt;
&lt;li&gt;recent Fedora &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Windows XP or newer (_WINVER=0x0502), tested on&lt;ul&gt;
&lt;li&gt;Windows 7 with VS2010&lt;/li&gt;
&lt;li&gt;Windows 7 with VS2012&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;MacOS X 10.6 or newer, tested on &lt;ul&gt;
&lt;li&gt;10.7&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Solaris 5.10 or newer,&lt;ul&gt;
&lt;li&gt;5.10 x86_64&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;People have reported to run OpenRTI on variants of Android and HP-UX. &lt;/p&gt;
&lt;h2 id="language-bindngs"&gt;Language bindngs&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;c++ (RTI-1.3, rti1516, rti1516e)&lt;/li&gt;
&lt;li&gt;python (rti1516)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="installation"&gt;Installation&lt;/h2&gt;
&lt;p&gt;It's a usual cmake project.&lt;/p&gt;
&lt;p&gt;Execute cmake from within a build directory of your choice, give this&lt;br /&gt;
cmake the source directory, generate build files for your native build&lt;br /&gt;
environment and compile the set of libraries/tests.&lt;/p&gt;
&lt;p&gt;Specifically under a UNIX like environment:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="nx"&gt;cd&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;builddir&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="nx"&gt;cmake&lt;/span&gt; &lt;span class="na"&gt;-DCMAKE_INSTALL_PREFIX&lt;/span&gt;&lt;span class="o"&gt;=&amp;lt;&lt;/span&gt;&lt;span class="nb"&gt;prefix&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;srcdir&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="nx"&gt;make&lt;/span&gt;
&lt;span class="nx"&gt;make&lt;/span&gt; &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Or depending on your c++ compile environment, you may need to take&lt;br /&gt;
different steps. For details refer to www.cmake.org.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mathias Fröhlich</dc:creator><pubDate>Wed, 26 Mar 2014 06:36:02 -0000</pubDate><guid>https://sourceforge.net3c840e343fad6659db34f2436ae97f405f71aa8f</guid></item><item><title>Home modified by Mathias Fröhlich</title><link>https://sourceforge.net/p/openrti/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/openrti/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/frohlich/"&gt;Mathias Fröhlich&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-4f3c1a18bfc09e04af008b96" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mathias Fröhlich</dc:creator><pubDate>Wed, 26 Mar 2014 06:06:41 -0000</pubDate><guid>https://sourceforge.netef8ea7c1e8e85a5e96948d1be4a87b4a10fba206</guid></item></channel></rss>