File: netthrottle.c

package info (click to toggle)
xshipwars 1.32-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 17,176 kB
  • ctags: 6,357
  • sloc: ansic: 157,152; makefile: 226; sh: 75
file content (55 lines) | stat: -rw-r--r-- 1,070 bytes parent folder | download
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
#include "swserv.h"



int NetHandleObjectThrottle(int condescriptor, char *arg)
{
        static long object_num, con_object_num;
        static double throttle;
        static xsw_object_struct *obj_ptr;


        con_object_num = connection[condescriptor]->object_num;
        if(DBIsObjectGarbage(con_object_num))
            return(-1);
        else
            obj_ptr = xsw_object[con_object_num];


        /*  
         *	SWEXTCMD_SETTHROTTLE format:
         *
         *      object_num, throttle
         */
        sscanf(arg,
                "%ld %lf",

                &object_num,
                &throttle   
        );


        /* Connection must own object. */
        if(object_num != con_object_num)
            return(-3);


        /* Sanitize throttle value. */
        if(throttle < 0.0)
            throttle = 0.0;
        else if(throttle > 1.0)
            throttle = 1.0;
        
        /* Set throttle value. */
        obj_ptr->throttle = throttle;


        return(0);
}


int NetSendObjectThrottle(int condescriptor)
{

	return(0);
}