转:怎样高效的使用RiProcedure

http://cid-a6597afda81373ba.spaces.live.com/blog/cns!A6597AFDA81373BA!295.entry

如何更加高效的使用RiProcedure

 

A traditional procedural primitive calls Subdivide() function to create RIB stream as soon as its bounding box is hit. But in this example, Subdivide() does not create any RIB stream. It invokes another procedural for several times instead. We call it Proxy. We call the procedural invoked by Proxy is called Real.

The idea is to divide large data set into a number of smaller fragments, each has its own smaller bounding box. Real procedural will not trigger RIB stream until it’s bounding box is hit. And RenderMan will release memory allocated to a Real as soon as it has been rendered. This method uses memory a lot more efficiently than emitting all RIB stream in one piece.

#include  < stdio.h >
#include 
< stdlib.h >

#include 
" DProxy.h "
#include 
" DReal.h "

#ifdef _WIN32
#define  export __declspec(dllexport)
#define  strtok_r(str,delim,saveptr) strtok((str),(delim))
#else
#define  export
#endif

extern   " C "  {
/*  Declarations  */
export RtPointer ConvertParameters(RtString paramstr);
export RtVoid Subdivide(RtPointer data, 
float  detail);
export RtVoid Free(RtPointer data);
export RtVoid Subdivide_real(RtPointer data, 
float  detail);
export RtVoid Free_real(RtPointer data);
}

export RtPointer ConvertParameters(RtString paramstr)
{
DProxy  * data  =   new  DProxy(paramstr);
return  data;
}

export RtVoid Subdivide(RtPointer blinddata, RtFloat detailsize)
{
DProxy  * data  =  static_cast <  DProxy *> (blinddata);
data -> init();

DReal *  realdata;
RtBound bound  =  { - . 5 , . 5 - . 5 , . 5 - . 5 , . 5 };
for (unsigned i = 0 ; i <  data -> getNumData(); i ++ ) {
realdata  =   new  DReal();

float  noi  =   float (random() % 131 ) / 262 .f + 0.03 ;

realdata -> setRadius( noi);

RiTransformBegin();

float  noix  =  ( 0.5   -   float (random() % 271 ) / 271 .f) * 5 ;
float  noiy  =  ( 0.5   -   float (random() % 219 ) / 219 .f) * 5 ;
float  noiz  =  ( 0.5   -   float (random() % 253 ) / 253 .f) * 5 ;

RiTranslate(noix, noiy, noiz);

bound[ 0 =   - noi; bound[ 1 =  noi;
bound[ 2 =   - noi; bound[ 3 =  noi;
bound[ 4 =   - noi; bound[ 5 =  noi;

RiProcedural(realdata, bound, Subdivide_real, Free_real);

RiTransformEnd();
}
}

export RtVoid Subdivide_real(RtPointer blinddata, RtFloat detailsize)
{
DReal  * data  =  static_cast <  DReal *> (blinddata);
data -> emit();
}

export RtVoid Free(RtPointer blinddata)
{
DProxy  * data  =  static_cast <  DProxy *> (blinddata);
delete data;
}

export RtVoid Free_real(RtPointer blinddata)
{
DReal  * data  =  static_cast <  DReal *> (blinddata);
delete data;
}
 

 

转载于:https://www.cnblogs.com/rdRoad/archive/2011/03/30/2000383.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值