Mercurial > hg > Game > Cerium
view Renderer/Engine/polygon.h @ 1319:31455d34e502 draft
collada file reader minor changes.
author | Taiki TAIRA <e095767@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Dec 2011 09:39:14 +0900 |
parents | ab9b7d21b32b |
children | e51127dbd63c |
line wrap: on
line source
#ifndef INCLUDED_POLYGON #define INCLUDED_POLYGON #include <SDL.h> #include <libxml/parser.h> #include "polygon_pack.h" #include "SpanPack.h" #include "texture.h" #include "TaskManager.h" class Polygon { public: long long size; const char *name; const char *parent_name; float *matrix; texture_list *texture_info; PolygonPackPtr pp; int pp_num; float xyz[4]; // position float angle[4]; // angle float c_xyz[4]; // center of rotation float *anim; float scale[3]; Polygon(void); void parameter_change(char *name, float x, float y, float z, float ax, float ay, float az); //void load_texture(char *image_name); //void draw(float *stack); //void draw(SceneGraphPack *sgp); //void draw(PolygonPack *pp); //void draw(SpanPack *sp); Uint32 get_rgb(int tx, int ty); public: void* polygon_allocate(int size) { void *buff = 0; if (size==0) return 0; #if defined(__SPU__) || ! defined(HAS_POSIX_MEMALIGN) buff = malloc(size); #else posix_memalign(&buff, DEFAULT_ALIGNMENT, size); #endif if (buff==0) printf("Polygon:Can't allocate memory\n"); return buff; } void position_init(void); void tree_draw(); void pickup_coordinate(char *cont); void pickup_normal(char *cont); void pickup_model(char *cont); void pickup_texture(char *cont); void font_coordinate(int baseline, int row, int width); void font_texture(float row,float width); void font_normal(); void font_model(); }; #endif