summaryrefslogtreecommitdiff
path: root/TAO/examples/Simulator/NavWeap.idl
blob: 8044fa72dc26ee5f5d2f587317665db9f02a3968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// =========================================================================================================
//
// = FILE
//     NavWeap.idl
//
// = DESCRIPTION
//    Navigation and Weapon structs for the DOVE/EventService demo.

// = AUTHORS
//     Michael Kircher <mk1@cec.wustl.edu>
//     Modified by
//     Chris Gill <cdgill@cs.wustl.edu>
// =========================================================================================================

#include "tao/TimeBase.pidl"

struct Navigation
{
  long position_latitude;
  long position_longitude;
  unsigned long altitude;
  long heading;
  long roll;
  long pitch;
  // common part
  double utilization;
  double overhead;
  TimeBase::TimeT arrival_time;
  TimeBase::TimeT deadline_time;
  TimeBase::TimeT completion_time;
  TimeBase::TimeT computation_time;
  unsigned long criticality;
  unsigned long update_data;
};

struct Weapons
{
  unsigned long number_of_weapons;
  string weapon1_identifier;
  unsigned long weapon1_status;
  string weapon2_identifier;
  unsigned long weapon2_status;
  string weapon3_identifier;
  unsigned long weapon3_status;
  string weapon4_identifier;
  unsigned long weapon4_status;
  string weapon5_identifier;
  unsigned long weapon5_status;
  // common part
  double utilization;
  double overhead;
  TimeBase::TimeT arrival_time;
  TimeBase::TimeT deadline_time;
  TimeBase::TimeT completion_time;
  TimeBase::TimeT computation_time;
  unsigned long criticality;
  unsigned long update_data;
};

interface NavWeapTerminator
    // = DESCRIPTION
    // This interface specifies a single operation, used
    // to shut down the orb.  This allows the orb to
    // be shut down cleanly, from within a synchronously
    // servant dispatched servant, but with the request
    // originating from another thread.
{
  void shutdown ();
};