view ppe/chara_state3.cc @ 20:6487f54ba3d1

add new file.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Sun, 26 Dec 2010 19:00:01 +0900
parents
children 5f1abbe03b9a
line wrap: on
line source

#include "chara_state3.h"
#include "task_object.h"

SchedDefineTask(STATE3);

static int
run(SchedTask *smanager, void *rbuf, void *wbuf)
{
    CHARACTER *p = (CHARACTER*)smanager->get_input(rbuf, 0);
    
    p->x += p->vx;
    p->y += p->vy;
    if((p->dt1 == 60) ||
       (p->dt1 == 90) ||
       (p->dt1 == 30))
    {
	Puttama(0, p->x, p->y);
    }
    p->dt1++;
    
    p->task = STATE3;
    smanager->swap();
    return 0;
}