Difference between revisions of "Example"
From Proview Wiki
m (Added section to start application automatically) |
|||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | Proview Designer's Guide Chapter | + | 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 |
+ | |||
+ | Key: MB1 = Left Mouse Button, MB2 = Middle Mouse Button, MB3 = Right Mouse Button | ||
'''Open Proview''' | '''Open Proview''' | ||
Line 5: | Line 7: | ||
* MB1 $Hier | * MB1 $Hier | ||
* MB2 right panel | * MB2 right panel | ||
− | * right key on Oxx $Hier | + | * right arrow key on Oxx $Hier |
* ObjectName application | * ObjectName application | ||
* MB1 ProjectReg | * MB1 ProjectReg | ||
* MB2 in application $Hier | * MB2 in application $Hier | ||
− | * right key on Oxx $ProjectReg | + | * right arrow key on Oxx $ProjectReg |
* ObjectName cpp | * ObjectName cpp | ||
* Ctrl+E | * Ctrl+E | ||
Line 30: | Line 32: | ||
* MB1 Plant -> $PlantHier | * MB1 Plant -> $PlantHier | ||
* MB2 right panel | * MB2 right panel | ||
− | * right key on Oxx $PlantHier | + | * right arrow key on Oxx $PlantHier |
* ObjectName plant | * ObjectName plant | ||
* MB1 AllClases -> pwrb -> XyCurve | * MB1 AllClases -> pwrb -> XyCurve | ||
* MB2 in plant $PlantHier | * MB2 in plant $PlantHier | ||
− | * right key on Oxx XyCurve | + | * right arrow key on Oxx XyCurve |
* ObjectName curve | * ObjectName curve | ||
* Ctrl+E | * Ctrl+E | ||
Line 108: | Line 110: | ||
</nowiki> | </nowiki> | ||
+ | Create file /usr/local/pwrp/cpp/src/appl/ra_myappl.h (this file just needs to exist, it should be empty) | ||
− | '''On terminal''' | + | '''On the terminal''' |
$ sdf cpp | $ sdf cpp | ||
$ cd /usr/local/pwrp/cpp/src/appl/ | $ 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 | + | $ 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 | + | $ 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''' | |
− | '''On | + | |
* Shift+Ctrl+B Node + B | * Shift+Ctrl+B Node + B | ||
* Tools -> Runtime Monitor | * Tools -> Runtime Monitor | ||
* Start Runtime | * Start Runtime | ||
* File -> Start Runtime Navigator | * File -> Start Runtime Navigator | ||
− | * right key Database | + | * right arrow key Database |
− | * right key plant | + | * right arrow key plant |
* MB3 curve Object Graph | * MB3 curve Object Graph | ||
− | '''On terminal''' | + | '''On the terminal''' |
$ ra_myappl | $ 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, ""