Difference between revisions of "Example"

From Proview Wiki
Jump to: navigation, search
m (Added section to start application automatically)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<p>Proview Designer's Guide Chapter 13</p>
+
These are the step by step instructions to create the C++ program from the Proview [http://www.proview.se/doc/en_us/man_dg.pdf "Designer's Guide"] Chapter 14 - Application Programming
<p><strong>Open Proview</strong></p>
+
 
<ul>
+
Key: MB1 = Left Mouse Button, MB2 = Middle Mouse Button, MB3 = Right Mouse Button
<li> Ctrl+E </li>
+
 
<li> MB1 $Hier </li>
+
'''Open Proview'''
<li> MB2 right panel </li>
+
* Ctrl+E
<li> right key on Oxx $Hier </li>
+
* MB1 $Hier
<li> ObjectName application </li>
+
* MB2 right panel
<li> MB1 ProjectReg </li>
+
* right arrow key on Oxx $Hier
<li> MB2 in application $Hier </li>
+
* ObjectName application
<li> right key on Oxx $ProjectReg </li>
+
* MB1 ProjectReg
<li> ObjectName cpp </li>
+
* MB2 in application $Hier
<li> Ctrl+E </li>
+
* right arrow key on Oxx $ProjectReg
<li> Yes </li>
+
* ObjectName cpp
<li> Yes </li>
+
* Ctrl+E
<li> MB3 cpp Open Project... </li>
+
* Yes
<li> Next </li>
+
* Yes
<li> Next </li>
+
* MB3 cpp Open Project...
<li> No </li>
+
* Next
<li> Next </li>
+
* Next
<li> Next </li>
+
* No
<li> Next </li>
+
* Next
<li> Next </li>
+
* Next
<li> Yes </li>
+
* Next
</ul>
+
* Next
<p><strong>Configure RootVolume</strong></p>
+
* Yes
<ul>
+
'''Configure RootVolume'''
<li> Next </li>
+
* Next
<li> Next </li>
+
* Next
<li> Next </li>
+
* Next
</ul>
+
 
<ul>
+
* MB1 Plant -> $PlantHier
<li> MB1 Plant -&gt; $PlantHier </li>
+
* MB2 right panel
<li> MB2 right panel </li>
+
* right arrow key on Oxx $PlantHier
<li> right key on Oxx $PlantHier </li>
+
* ObjectName plant
<li> ObjectName plant </li>
+
* MB1 AllClases -> pwrb -> XyCurve
<li> MB1 AllClases -&gt; pwrb -&gt; XyCurve </li>
+
* MB2 in plant $PlantHier
<li> MB2 in plant $PlantHier </li>
+
* right arrow key on Oxx XyCurve
<li> right key on Oxx XyCurve </li>
+
* ObjectName curve
<li> ObjectName curve </li>
+
* Ctrl+E
<li> Ctrl+E </li>
+
* Yes
<li> Yes </li>
+
 
</ul>
+
'''''/usr/local/pwrp/cpp/src/appl/ra_myappl.cpp'''''
<p><em><strong>/usr/local/pwrp/cpp/src/appl/ra_myappl.cpp</strong></em></p>
+
<nowiki>
<pre>#include &lt;math.h&gt;
+
#include <math.h>
 
#include "pwr.h"
 
#include "pwr.h"
 
#include "pwr_baseclasses.hpp"
 
#include "pwr_baseclasses.hpp"
Line 69: Line 69:
  
 
  // Direct link to curve object
 
  // Direct link to curve object
  sts = gdh_RefObjectInfo( name, (void **)&amp;curve_ptr, &amp;dlid, sizeof(*curve_ptr));
+
  sts = gdh_RefObjectInfo( name, (void **)&curve_ptr, &dlid, sizeof(*curve_ptr));
 
  if ( EVEN(sts)) exit(0);
 
  if ( EVEN(sts)) exit(0);
 
}
 
}
Line 78: Line 78:
 
   if ( i % 5 == 0) {
 
   if ( i % 5 == 0) {
 
   // Calculate x and y coordinates for a sine curve every fifth second
 
   // Calculate x and y coordinates for a sine curve every fifth second
   for ( int j = 0; j &lt; 100; j++) {
+
   for ( int j = 0; j < 100; j++) {
     curve_ptr-&gt;XValue[j] = j;
+
     curve_ptr->XValue[j] = j;
     curve_ptr-&gt;YValue[j] = 50 + 50 * sin( 2.0 * M_PI * (j + i) / 100);
+
     curve_ptr->YValue[j] = 50 + 50 * sin( 2.0 * M_PI * (j + i) / 100);
 
   }
 
   }
 
   // Indicate new curve to graph
 
   // Indicate new curve to graph
   curve_ptr-&gt;Update = 1;
+
   curve_ptr->Update = 1;
 
  }
 
  }
 
  else if ( i % 5 == 2)
 
  else if ( i % 5 == 2)
   curve_ptr-&gt;Update = 0;
+
   curve_ptr->Update = 0;
 
  sleep(1);
 
  sleep(1);
  if ( i &gt; 360)
+
  if ( i > 360)
 
   i = 0;
 
   i = 0;
 
  }
 
  }
Line 107: Line 107:
 
  myappl.close();
 
  myappl.close();
 
}
 
}
</pre>
+
 
<p><strong>On terminal</strong></p>
+
</nowiki>
<pre>$ sdf cpp
+
 
$ cd /usr/local/pwrp/cpp/src/appl/
+
Create file /usr/local/pwrp/cpp/src/appl/ra_myappl.h (this file just needs to exist, it should be empty)
$ g++ -g -c ra_myappl.cpp -o $pwrp_obj/ra_myappl.o -I$pwr_inc -DOS_LINUX=1 -DOS=linux -DHW_X86=1 -DHW=x86
+
 
$ g++ -g -o $pwrp_exe/ra_myappl $pwrp_obj/ra_myappl.o $pwr_obj/pwr_msg_rt.o -L$pwr_lib -lpwr_rt -lpwr_co -lpwr_msg_dummy -lrt
+
'''On the terminal'''
</pre>
+
 
<p><strong>On proview</strong></p>
+
$ sdf cpp
<ul>
+
$ cd /usr/local/pwrp/cpp/src/appl/
<li> Shift+Ctrl+B Node + B </li>
+
$ g++ -g -c ra_myappl.cpp -o $pwrp_obj/ra_myappl.o -I$pwr_inc -DOS_LINUX=1 -DOS=linux -DHW_X86=1 -DHW=x86 -DOS_POSIX
<li> Tools -&gt; Runtime Monitor </li>
+
$ g++ -g -o $pwrp_exe/ra_myappl $pwrp_obj/ra_myappl.o $pwr_obj/pwr_msg_rt.o -L$pwr_lib -lpwr_rt -lpwr_co -lpwr_msg_dummy -lrt -pthread
<li> Start Runtime </li>
+
 
<li> File -&gt; Start Runtime Navigator </li>
+
'''On Proview'''
<li> right key Database </li>
+
* Shift+Ctrl+B Node + B
<li> right key plant </li>
+
* Tools -> Runtime Monitor
<li> MB3 curve Object Graph </li>
+
* Start Runtime
</ul>
+
* File -> Start Runtime Navigator
<p><br /> <strong>On terminal</strong></p>
+
* right arrow key Database
<pre>$ ra_myappl</pre>
+
* right arrow key plant
<p>l</p>
+
* MB3 curve Object Graph
<p><strong><br /></strong></p>
+
 
 +
 
 +
'''On the terminal'''
 +
$ ra_myappl
 +
 
 +
'''Automatically Starting the Application When Proview Starts'''
 +
* Open the file /usr/local/pwrp/cpp/bld/common/load/ld_appl_***.txt
 +
* In the User applications section, add the line:
 +
  ra_myappl, ra_myappl, noload, run, ra_myappl, 12, nodebug, ""

Latest revision as of 07:57, 16 July 2014

These are the step by step instructions to create the C++ program from the Proview "Designer's Guide" Chapter 14 - Application Programming

Key: MB1 = Left Mouse Button, MB2 = Middle Mouse Button, MB3 = Right Mouse Button

Open Proview

  • Ctrl+E
  • MB1 $Hier
  • MB2 right panel
  • right arrow key on Oxx $Hier
  • ObjectName application
  • MB1 ProjectReg
  • MB2 in application $Hier
  • right arrow key on Oxx $ProjectReg
  • ObjectName cpp
  • Ctrl+E
  • Yes
  • Yes
  • MB3 cpp Open Project...
  • Next
  • Next
  • No
  • Next
  • Next
  • Next
  • Next
  • Yes

Configure RootVolume

  • Next
  • Next
  • Next
  • MB1 Plant -> $PlantHier
  • MB2 right panel
  • right arrow key on Oxx $PlantHier
  • ObjectName plant
  • MB1 AllClases -> pwrb -> XyCurve
  • MB2 in plant $PlantHier
  • right arrow key on Oxx XyCurve
  • ObjectName curve
  • Ctrl+E
  • Yes

/usr/local/pwrp/cpp/src/appl/ra_myappl.cpp

#include <math.h>
#include "pwr.h"
#include "pwr_baseclasses.hpp"
#include "rt_gdh.h"


class ra_myappl {
 pwr_Class_XyCurve *curve_ptr;
 pwr_tRefId dlid;
public:
 ra_myappl() {}
 void init();
 void scan();
 void close();
};

void ra_myappl::init()
{
 pwr_tStatus sts;
 pwr_tOName name = "plant-curve";
 
 // Connect to database
 sts = gdh_Init( "ra_myappl");
 if ( EVEN(sts)) exit(0);

 // Direct link to curve object
 sts = gdh_RefObjectInfo( name, (void **)&curve_ptr, &dlid, sizeof(*curve_ptr));
 if ( EVEN(sts)) exit(0);
}

void ra_myappl::scan()
{
 for ( unsigned int i = 0;;i++) {
  if ( i % 5 == 0) {
   // Calculate x and y coordinates for a sine curve every fifth second
   for ( int j = 0; j < 100; j++) {
    curve_ptr->XValue[j] = j;
    curve_ptr->YValue[j] = 50 + 50 * sin( 2.0 * M_PI * (j + i) / 100);
   }
   // Indicate new curve to graph
   curve_ptr->Update = 1;
 }
 else if ( i % 5 == 2)
  curve_ptr->Update = 0;
 sleep(1);
 if ( i > 360)
  i = 0;
 }
}

void ra_myappl::close()
{
 gdh_UnrefObjectInfo( dlid);
}


int main()
{
 ra_myappl myappl;
 
 myappl.init();
 myappl.scan(); 
 myappl.close();
}


Create file /usr/local/pwrp/cpp/src/appl/ra_myappl.h (this file just needs to exist, it should be empty)

On the terminal

$ sdf cpp
$ cd /usr/local/pwrp/cpp/src/appl/
$ g++ -g -c ra_myappl.cpp -o $pwrp_obj/ra_myappl.o -I$pwr_inc -DOS_LINUX=1 -DOS=linux -DHW_X86=1 -DHW=x86 -DOS_POSIX
$ g++ -g -o $pwrp_exe/ra_myappl $pwrp_obj/ra_myappl.o $pwr_obj/pwr_msg_rt.o -L$pwr_lib -lpwr_rt -lpwr_co -lpwr_msg_dummy -lrt -pthread

On Proview

  • Shift+Ctrl+B Node + B
  • Tools -> Runtime Monitor
  • Start Runtime
  • File -> Start Runtime Navigator
  • right arrow key Database
  • right arrow key plant
  • MB3 curve Object Graph


On the terminal

$ ra_myappl

Automatically Starting the Application When Proview Starts

  • Open the file /usr/local/pwrp/cpp/bld/common/load/ld_appl_***.txt
  • In the User applications section, add the line:
 ra_myappl, ra_myappl, noload, run, ra_myappl, 12, nodebug, ""
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox