aboutsummaryrefslogtreecommitdiff
path: root/test.c
blob: ad7aaa045d9422ed510fb19495b2d2072ebaf8df (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#ifdef __linux__
#include <unistd.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <survive.h>

#include <os_generic.h>
#include <CNFGFunctions.h>

struct SurviveContext * ctx;

void HandleKey( int keycode, int bDown )
{
	if( !bDown ) return;

	if( keycode == 'O' || keycode == 'o' )
	{
		survive_send_magic(ctx,1,0,0);
	}
	if( keycode == 'F' || keycode == 'f' )
	{
		survive_send_magic(ctx,0,0,0);
	}
}

void HandleButton( int x, int y, int button, int bDown )
{
}

void HandleMotion( int x, int y, int mask )
{
}

void HandleDestroy()
{
}

void testprog_button_process(SurviveObject * so, uint8_t eventType, uint8_t buttonId, uint8_t axis1Id, uint16_t axis1Val, uint8_t axis2Id, uint16_t axis2Val)
{
	survive_default_button_process(so, eventType, buttonId, axis1Id, axis1Val, axis2Id, axis2Val);
	
	// do nothing.
	printf("ButtonEntry: eventType:%x, buttonId:%d, axis1:%d, axis1Val:%8.8x, axis2:%d, axis2Val:%8.8x\n",
		eventType,
		buttonId,
		axis1Id,
		axis1Val,
		axis2Id,
		axis2Val);

	// Note: the code for haptic feedback is not yet written to support wired USB connections to the controller.  
	// Work is still needed to reverse engineer that USB protocol.

	// let's do some haptic feedback if the trigger is pushed
	if (buttonId == 24 && eventType == 1) // trigger engage
	{
		for (int j = 0; j < 6; j++)
		{
			for (int i = 0; i < 0x5; i++)
			{
				survive_haptic(so, 0, 0xf401, 0xb5a2, 0x0100);
				//survive_haptic(so, 0, 0xf401, 0xb5a2, 0x0100);
				OGUSleep(1000);
			}
			OGUSleep(20000);
		}
	}

	// let's do some haptic feedback if the touchpad is pressed.
	if (buttonId == 2 && eventType == 1) // trigger engage
	{
		for (int j = 0; j < 6; j++)
		{
			for (int i = 0; i < 0x1; i++)
			{
				survive_haptic(so, 0, 0xf401, 0x05a2, 0xf100);
				//survive_haptic(so, 0, 0xf401, 0xb5a2, 0x0100);
				OGUSleep(5000);
			}
			OGUSleep(20000);
		}
	}
}

void testprog_lighthouse_process(SurviveContext *ctx, uint8_t lighthouse, SurvivePose *pose, SurvivePose *obj_pose) {
	survive_default_lighthouse_pose_process(ctx, lighthouse, pose, obj_pose);

	printf("Lighthouse: [%1.1x][% 08.8f,% 08.8f,% 08.8f] [% 08.8f,% 08.8f,% 08.8f,% 08.8f]\n", lighthouse, pose->Pos[0],
		   pose->Pos[1], pose->Pos[2], pose->Rot[0], pose->Rot[1], pose->Rot[2], pose->Rot[3]);
}

void testprog_raw_pose_process(SurviveObject *so, uint8_t lighthouse, SurvivePose *pose) {
	survive_default_raw_pose_process(so, lighthouse, pose);

	// print the pose;
	printf("Pose: [%1.1x][%s][% 08.8f,% 08.8f,% 08.8f] [% 08.8f,% 08.8f,% 08.8f,% 08.8f]\n", lighthouse, so->codename,
		   pose->Pos[0], pose->Pos[1], pose->Pos[2], pose->Rot[0], pose->Rot[1], pose->Rot[2], pose->Rot[3]);
}

void testprog_imu_process(SurviveObject * so, int mask, FLT * accelgyromag, uint32_t timecode, int id)
{
	survive_default_imu_process(so, mask, accelgyromag, timecode, id);

	// so something here, like printing out the data...

}


static void dump_iface( struct SurviveObject * so, const char * prefix )
{
	int i;
	FILE * f;
	char fname[1024];

	if (!so) { return; }

	sprintf( fname, "%s_points.csv", prefix );
	f = fopen( fname, "w" );
	for( i = 0; i < so->sensor_ct; i++ )
	{
		fprintf( f, "%g %g %g\n", so->sensor_locations[i*3+0], so->sensor_locations[i*3+1], so->sensor_locations[i*3+2] );
	}
	fclose( f );

	sprintf( fname, "%s_normals.csv", prefix );
	f = fopen( fname, "w" );
	for( i = 0; i < so->sensor_ct; i++ )
	{
		fprintf( f, "%g %g %g\n", so->sensor_normals[i*3+0], so->sensor_normals[i*3+1], so->sensor_normals[i*3+2] );
	}
	fclose( f );

}



int main( int argc, char ** argv )
{
	int magicon = 0;
	double Start = OGGetAbsoluteTime();

	ctx = survive_init( argc, argv );
	if (ctx == 0) { // Implies --help or similiar
		return -1;
	}

	survive_install_button_fn(ctx, testprog_button_process);
	survive_install_raw_pose_fn(ctx, testprog_raw_pose_process);

	survive_install_imu_fn(ctx, testprog_imu_process);
	survive_install_lighthouse_pose_fn(ctx, testprog_lighthouse_process);

	if( !ctx )
	{
		fprintf( stderr, "Fatal. Could not start\n" );
		return 1;
	}

	dump_iface( survive_get_so_by_name( ctx, "HMD" ), "HMD" );
	dump_iface( survive_get_so_by_name( ctx, "WM0" ), "WM0" );
	dump_iface( survive_get_so_by_name( ctx, "WM1" ), "WM1" );
	dump_iface( survive_get_so_by_name( ctx, "TR0" ), "TR0" );
	dump_iface( survive_get_so_by_name( ctx, "WW0" ), "WW0" );
	survive_startup(ctx);
	survive_cal_install(ctx);

	while(survive_poll(ctx) == 0)
	{
		//double Now = OGGetAbsoluteTime();
		//if( Now > (Start+1) && !magicon )
		//{
		//	survive_send_magic(ctx,1,0,0);
		//	magicon = 1;
		//}
		//Do stuff.
	}
}