view Renderer/Engine/task/ExecMove.cc @ 1013:34a9ba655fbe

spe/CreatePolygonFromSceneGraph add. not done.
author tkaito
date Fri, 05 Nov 2010 01:05:39 +0900
parents 01b6d924a560
children
line wrap: on
line source

#include <stdlib.h>
#include <string.h>
#include "ExecMove.h"
#include "SgChange.h"
#include "SceneGraphRoot.h"

SchedDefineTask(ExecMove);

static int
run(SchedTask *smanager, void *rbuf , void *wbuf)
{
    SgChange *sgchange = (SgChange *)smanager->get_param(0);
    //SceneGraphRoot *sgroot = (SceneGraphRoot *)smanager->get_param(0);
    SceneGraphRoot *sgroot = sgchange->sgroot_A;
    long screen_w = (long)smanager->get_param(1);
    long screen_h = (long)smanager->get_param(2);

    //sgroot->updateControllerState();

    SceneGraphPtr list = sgroot->sg_available_list;
    sgroot->allRemove(sgroot->sg_remove_list);

    sgroot->sg_draw_tree = sgroot->sg_exec_tree;
    sgroot->sg_remove_list = sgroot->sg_available_list;

    sgroot->sg_exec_tree = NULL;
    sgroot->sg_available_list = NULL;

    sgroot->camera->move_execute(screen_w, screen_h);
    sgroot->camera->update(screen_w, screen_h);

    sgroot->camera->children = NULL;
    sgroot->camera->lastChild = NULL;

    list->move_execute(screen_w, screen_h);

    sgroot->list = list;
    
    return 0;
}