view spe/chara_state29.cc @ 18:c330ded6d728

add task file.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Dec 2010 22:18:11 +0900
parents
children f4140672ef9f
line wrap: on
line source

#include "chara_state29.h"
#include "tobject.h"

SchedDefineTask(STATE29);

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 % 18 == 1)
    {
	Puttama(0, p->x, p->y);
    }
    p->dt1++;
    return 0;
}