Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/test_render/spe/DrawSpan.cpp @ 177:e742053c4c87
zRow の生成、初期化の変更
author | gongo@localhost.localdomain |
---|---|
date | Tue, 16 Dec 2008 17:16:35 +0900 |
parents | 559b48b69b76 |
children | 5cde66c926b4 |
line wrap: on
line source
#include <stdlib.h> #include <string.h> #include "DrawSpan.h" #include "polygon_pack.h" #include "SpanPack.h" #include "texture.h" #include "viewer_types.h" #include "TileHash.h" #define SPAN_PACK_LOAD 0 #define TEX_LOAD 1 SchedDefineTask(DrawSpan); static TileHashPtr hash; static TileListPtr tileList; /** * ƥϡTEXTURE_SPLIT_PIXEL^2 Υ֥åʬ䤹 * * +---+---+---+---+---+---+ * | 0 | 1 | 2 | 3 | 4 | 5 | * +---+---+---+---+---+---+ * | | | | | |11 | * +---+---+---+---+---+---+ * | | | | | |17 | * +---+---+---+---+---+---+ * | | | | | |23 | * +---+---+---+---+---+---+ * | | | | | |29 | * +---+---+---+---+---+---+ * | | | | | |35 | * +---+---+---+---+---+---+ * * դ TEXTURE_SPLIT Ȥ * ƥ֥åο֥åIDȤʤ롣 */ /** * ƥκɸ顢 * ƥΤɤΥ֥å * * @param[in] tx X coordinates of texture * @param[in] tx Y coordinates of texture * @param[in] twidth Width of texture * @return block ID */ static inline int get_tex_block(int tx, int ty, int twidth) { int blockX, blockY; blockX = tx / TEXTURE_SPLIT_PIXEL; blockY = ty / TEXTURE_SPLIT_PIXEL; return blockX + (twidth/TEXTURE_SPLIT_PIXEL)*blockY; } /** * block ID ȡƥ TOP address * (tx,ty) ǻȤƥ Tile addres * * @param[in] tx X coordinates of texture * @param[in] tx Y coordinates of texture * @param[in] tw Width of texture * @param[in] tex_addr_top (tx,ty) ǻȤƥƬaddress * @return block ID */ static inline uint32* getTile(int tx, int ty, int tw, uint32 *tex_addr_top) { int block = get_tex_block(tx, ty, tw); return tex_addr_top + block*TEXTURE_BLOCK_SIZE; } void DrawSpan::linebuf_init(int *buf, int x, int rgb) { for (int i = 0; i < x; i++) { buf[i] = rgb; } } Uint32 DrawSpan::get_rgb(int tx, int ty, uint32 *addr) { TilePtr tile; tile = hash->get(addr); if (tile == NULL) { tile = tileList->nextTile(); /** * FIFO ʤΤǡ⤷ΤĤäƤк */ hash->remove(tile->texture_addr); tile->texture_addr = addr; smanager->dma_load(tile->pixel, (uint32)addr, sizeof(uint32)*TEXTURE_BLOCK_SIZE, TEX_LOAD); int index = hash->put(tile->texture_addr, tile); /** * TODO: * ʤäĤ * ޤǤΤĤ褷Ƥ³Ȥ */ if (index < 0) { printf("[%p] Can't entry\n", tile); return 0xff0000; } smanager->dma_wait(TEX_LOAD); } return tile->pixel[(TEXTURE_SPLIT_PIXEL)*ty+tx]; } int DrawSpan::run(void *rbuf, void *wbuf) { SpanPack *sp = (SpanPack*)smanager->get_input(0); SpanPack *next_sp = (SpanPack*)smanager->allocate(sizeof(SpanPack)); SpanPack *free_sp = next_sp; // next_sp free() SpanPack *tmp_sp = NULL; Span *span; hash = (TileHashPtr)smanager->global_get(GLOBAL_TEXTURE_HASH); tileList = (TileListPtr)smanager->global_get(GLOBAL_TILE_LIST); int rangex_start = get_param(0); // Υô x ϰϤλ int rangex_end = get_param(1); // (start <= x <= end) int rangey = get_param(2); // y ϰ (render_y + rangey - 1) int rangex = rangex_end - rangex_start + 1; float *zRow = (float*)smanager->get_input(1); int **linebuf = (int**)smanager->allocate(sizeof(int*)*rangey); for (int i = 0; i < rangey; i++) { linebuf[i] = (int*)smanager->get_output(i); linebuf_init(linebuf[i], rangex, 0xffffffff); } do { /** * SpanPack->next ¸ߤ硢 * ߤ SpanPack Ƥ֤ * SpanPack DMA žԤ */ if (sp->next != NULL) { smanager->dma_load(next_sp, (uint32)sp->next, sizeof(SpanPack), SPAN_PACK_LOAD); } else { next_sp = NULL; } for (int t = 0; t < sp->info.size; t++) { span = &sp->span[t]; Uint32 rgb = 0x00ff00; float tex1 = span->tex_x1; float tex2 = span->tex_x2; float tey1 = span->tex_y1; float tey2 = span->tex_y2; /** * Span 1 pixel * ƥκɸ */ int tex_xpos; int tex_ypos; /** * (tex_xpos, tex_ypos) Ρ֥å(ο)Ǥκɸ * Υ֥åΥɥ쥹(MainMemory) */ int tex_localx; int tex_localy; uint32 *tex_addr; int x = span->x; int y = span->y; int x_len = span->length_x; float z = span->start_z; float zpos = span->end_z; // ɸ [0 .. split_screen_w-1] 褦 x,y -1 int localx = getLocalX(x-1); int localy = getLocalY(y-1); if (x_len == 1) { if (x < rangex_start || rangex_end < x) { continue; } tex_xpos = (int)((span->tex_width-1) * tex1); tex_ypos = (int)((span->tex_height-1) * tey1); if (zpos < zRow[localx + (rangex * localy)]) { tex_addr = getTile(tex_xpos, tex_ypos, span->tex_width, span->tex_addr); tex_localx = tex_xpos % TEXTURE_SPLIT_PIXEL; tex_localy = tex_ypos % TEXTURE_SPLIT_PIXEL; rgb = get_rgb(tex_localx, tex_localy, tex_addr); zRow[localx + (rangex * localy)] = zpos; linebuf[localy][localx] = rgb; } } else { int js = (x < rangex_start) ? rangex_start - x : 0; int je = (x + x_len > rangex_end) ? rangex_end - x : x_len; float tex_x, tex_y, tex_z; for (int j = js; j <= je; j++) { localx = getLocalX(x-1+j); tex_z = z*(x_len-1-j)/(x_len-1) + zpos*j/(x_len-1); tex_x = tex1*(x_len-1-j)/(x_len-1) + tex2*j/(x_len-1); tex_y = tey1*(x_len-1-j)/(x_len-1) + tey2*j/(x_len-1); /** * ʤäʤ */ if (tex_x > 1) tex_x = 1; if (tex_x < 0) tex_x = 0; if (tex_y > 1) tex_y = 1; if (tex_y < 0) tex_y = 0; tex_xpos = (int)((span->tex_width-1) * tex_x); tex_ypos = (int)((span->tex_height-1) * tex_y); if (tex_z < zRow[localx + (rangex*localy)]) { tex_addr = getTile(tex_xpos, tex_ypos, span->tex_width, span->tex_addr); tex_localx = tex_xpos % TEXTURE_SPLIT_PIXEL; tex_localy = tex_ypos % TEXTURE_SPLIT_PIXEL; rgb = get_rgb(tex_localx, tex_localy, tex_addr); zRow[localx + (rangex*localy)] = tex_z; linebuf[localy][localx] = rgb; } } } } smanager->dma_wait(SPAN_PACK_LOAD); tmp_sp = sp; sp = next_sp; next_sp = tmp_sp; } while (sp); free(free_sp); free(linebuf); return 0; }