青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

4D星宇

c++

  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
  57 隨筆 :: 0 文章 :: 39 評論 :: 0 Trackbacks

#

              改寫代碼心得
       由于BLOOD渲染器的API由DX9轉向DX10,在轉化架構和改寫代碼的過程中,出現很多異常。
在測試過程中,發現很多錯誤都是由于沒有進行正確的初始化造成的。比如分配內存的容間,變量的正確賦值等等。已調完VB,IB,TEXTURE,RENDERTARGET等部分,還有MESH等大部未調。
       特此MARK,以作記錄。
posted @ 2008-12-08 10:21 bloodbao 閱讀(226) | 評論 (0)編輯 收藏

DX9下使用
D3DXPLANE plane; 
 D3DXPlaneFromPointNormal( &plane, &vPoint, &vNormal ); //生成這個平面
D3DXMatrixReflect( &matReflect, &plane ); //取得該平面的反射矩陣
//設置剪切平面,使反射面上的內容被渲染,面下的被丟棄
 m_pd3dDevice->SetClipPlane( 0, plane );
 m_pd3dDevice->SetRenderState( D3DRS_CLIPPLANEENABLE, 0x01 );
DX10下模擬:
User Clip PlanesUser Clip Planes are emulated by specifying a clip distance output from the Vertex Shader with the SV_ClipDistance[n] flag, where n is either 0 or 1. Each component can hold up to 4 clip distances in x, y, z, and w giving a total of 8 clip distances.

    用戶裁減平面通過在VS里設定一個SV_ClipDistance[n]標記,定義一個裁減距離輸出得到,n為0或1。這里一共能存放8個Clip Plane距離,分別使用數組兩個元素的x,y,z,w通道。

In this scenario, each clip planes is defined by a plane equation of the form:

在這個場景里,每個clip plane被一個平面方程定義:

Ax + By + Cz + D =0;

Where <A,B,C> is the normal of the plane, and D is the distance of the plane from the origin. Plugging in any point <x,y,z> into this equation gives its distance from the plane. Therefore, all points <x,y,z> that satisfy the equation Ax + By + Cz + D = 0 are on the plane. All points that satisfy Ax + By + Cz + D < 0 are below the plane. All points that satisfy Ax + By + Cz + D > 0 are above the plane.

<A,B,C>是平面法向,D是平面到原點的距離。把任意點<x,y,z>代入方程能得到它到平面的距離。所有滿足方程=0的點在平面上,<0的點在平面下而 >0的點在平面上。

In the Vertex Shader, each vertex is tested against each plane equation to produce a distance to the clip plane. Each of the three clip distances are stored in the first three components of the output component with the semantic SV_ClipDistance0. These clip distances get interpolated over the triangle during rasterization and clipped if the value every goes below 0.

    在VS中,每個頂點會帶入平面方程做測試。每個三角形的Clip距離存在SV_ClipDistance0語義輸出的前三個通道中。這個距離在光柵化中被線性插值,所有小于0的像素被剔除。

posted @ 2008-11-09 20:47 bloodbao 閱讀(1230) | 評論 (0)編輯 收藏

近期較閑,主要修改rendering架構,減少DX9的接口,全面使用DX10的接口,修改變動非常大,初調試三千多個ERROR,現減為850多個,不過,內部錯誤還是很多。希望能在DX11發布前,全部改完。第二步,會建立更龐大的ISCENENODE,以滿足快速測試和新版SCENEEDIT需要。暫記下。
posted @ 2008-10-23 21:55 bloodbao 閱讀(206) | 評論 (0)編輯 收藏

不知不覺,九月已經過去太半了,而我卻由于沉迷于游戲,反而沒學到什么東西,這樣浪費時間,真的是一種罪過。 過了一個多月時間,只簡單的支持了XML和一點點LIGHT。小貓的引擎,離我承諾的精彩的水面,漂亮的粒子系統,復雜的天氣系統,流暢的骨骼動畫和人工智能,越來越遠。 革命遠未成功,小貓還需努力,為了錢和生活,多一點自制,少玩一些游戲吧! 退路已斷,前方無路,人生豈能如些墮落。貓行天下,人生何缺悲壯,也需幾多拼搏。十分耕耘,萬分努力,或許成功! 期小貓自勉!
posted @ 2008-09-18 21:58 bloodbao 閱讀(191) | 評論 (0)編輯 收藏

                     Main Features in my blood engine
Direct3D 9 is used to render the scene
User input is gathered though DirectInput
Single pass multi-texturing using the fixed-function pipeline (FFP)
Light-mapping
Frustum culling
Simple skybox
Keyframe Animation with GPU-based frame interpolation through a custom vertex and pixel shader written in HLSL. This technique is also known as Vertex Tweening or even Morph Target
Support for Quake2 models (.md2)
Support for DirectX models (.x)
Support for PCX texture loading in addition to the other image formats already supported by Direct3D
Support for Quake3:Arena levels
Lightmaps
Curved surfaces using Bezier patches
Partial support of Quake3 materials and effects (.shader)
Uses the BSP/PVS to quickly discard non visible geometry
Collision detection using the BSP tree (supports ray, sphere and box sweeps)
A flexible scene graph system where entities can be attached to each other in order to perform hierarchical transformations and geometry culling
Quake-like player movement physics
A powerful in-game console system:
Outputs vital information
Can take command inputs from the user
Console variables can be dynamically edited at runtime
Commands and console variable settings can be loaded from a user-specified text file (cfg)
Garbage collection of unused resources through reference counting
Control keys can be dynamically changed in-game through the console, using the bind command
User input is abstracted through an Action Manager which maps inputs to actions
A smart chase-camera controller that will detect collisions with the world to prevent the view from being occluded by other pieces of world geometry.
Error handling through exceptions
The in-game HUD can display vital performance statistics about the game, such as frames per second, total number of triangles on the screen, number of textures loaded, etc…
posted @ 2008-08-11 15:05 bloodbao 閱讀(243) | 評論 (0)編輯 收藏

       為了這次面試,我休息了很多天,都沒工作。結果,得到的又是一個失敗的結局。分析原因,都認為我的C++基礎很薄弱吧,要不就是因為我以前從事的工作和現在的工作差別太大了。
      作為一名新手,我很迷茫,在學習的道路我沒有被打敗,卻在兩次面試中,深受打擊。我不僅在想,這是否是我要選擇的路。僅剩半個多月的時間,暑期就結束了,我再不出去,就沒機會了。事實上,做不做游戲,我無所謂,但現在的生活一直不是我想要的。我不斷地在否定自已的路上,越走越遠,找不到真實的我。
      兩個月很快就過去了,我只能靜下心來去做事情,把這些煩人的事,都拋于腦后。路還是要走,人總是要成長的,希望能從失敗中走出來。
      記下今天的失敗,以作自勉。

posted @ 2008-08-06 10:36 bloodbao 閱讀(485) | 評論 (10)編輯 收藏


主要是用模板緩沖區來實現。
DepthStencilState StencilShadow
{
    DepthEnable = true;
    DepthWriteMask = ZERO;
    DepthFunc = LESS;
   
    StencilEnable = true;
    StencilReadMask = 0xFFFFFFFF;
    StencilWriteMask = 0xFFFFFFFF;
   
    FrontFaceStencilFunc = ALWAYS;
    FrontFaceStencilPass = INCR;
    FrontFaceStencilFail = Keep;
   
    BackFaceStencilFunc = ALWAYS;
    BackFaceStencilPass = DECR;
  BackFaceStencilFail = Keep;
};
BlendState AdditiveBlending
{
    AlphaToCoverageEnable = FALSE;
    BlendEnable[0] = TRUE;
    SrcBlend = SRC_ALPHA ;
    DestBlend = INV_SRC_ALPHA ;
    BlendOp = ADD;
    SrcBlendAlpha = ZERO;
    DestBlendAlpha = ZERO;
    BlendOpAlpha = ADD;
    RenderTargetWriteMask[0] = 0x0F;
};

Rendering Shadows

At the top level, the rendering steps look like the following:

  • If ambient lighting is enabled, render the entire scene with ambient only.
  • For each light in the scene, do the following:
    • Disable depth-buffer and frame-buffer writing.
    • Prepare the stencil buffer render states for rendering the shadow volume.
    • Render the shadow volume mesh with a vertex extruding shader. This sets up the stencil buffer according to whether or not the pixels are in the shadow volume.
    • Prepare the stencil buffer render states for lighting.
    • Prepare the additive blending mode.
    • Render the scene for lighting with only the light being processed.

Shadow Volume并不是一個沒有缺陷的技術。除了高像素填充率和陰影邊界檢測外,在繪制過程中還可能出現錯誤。錯誤的主要原因是當一個幾何模型在計算自陰影時,它的面通常被完全照亮或者完全變暗,這取決于這個面是否朝向光源。光照計算必須使用頂點法向而非表面法向。對于接近平行光源的面,它會被完全照亮或者完全變暗,而實際上應該部分處于光源中。這是從stencil shadow volume中繼承來的問題,在計算陰影時必須被考慮。這個問題可以通過增加mesh密度來解決,這也增加了處理mesh的時間。頂點法向和面法向越接近,表面的問題就越少。如果程序不能把問題限制在可接受的范圍內,就必須考慮使用其他的算法,比如PRT或者Shadow Map。
posted @ 2008-07-20 10:48 bloodbao 閱讀(361) | 評論 (0)編輯 收藏

Fixed-function Lighting Pipeline
ColorsOutput CalcLighting( float3 worldNormal, float3 worldPos, float3 cameraPos )
{
    ColorsOutput output = (ColorsOutput)0.0;
   
    for(int i=0; i<8; i++)
{
     //光線方向
        float3 toLight = g_lights[i].Position.xyz - worldPos;
         //離光源距離
        float lightDist = length( toLight );
         //atten=(1/(a[2]*d*d+a[1]*d+a[1])
        float fAtten = 1.0/dot( g_lights[i].Atten, float4(1,lightDist,lightDist*lightDist,0) );
        float3 lightDir = normalize( toLight );
         //H
        float3 halfAngle = normalize( normalize(-cameraPos) + lightDir );
       
         //Phong方程,逐頂點光照
        output.Diffuse += max(0,dot( lightDir, worldNormal ) * g_lights[i].Diffuse * fAtten) + g_lights[i].Ambient;
        output.Specular += max(0,pow( dot( halfAngle, worldNormal ), 64 ) * g_lights[i].Specular * fAtten );
    }
   
    return output;
}
簡單ALPHA測試
//
// PS for rendering with alpha test
//
float4 PSAlphaTestmain(PSSceneIn input) : COLOR0
{       
         float4 color =  tex2D( g_samLinear, g_txDiffuse, input.tex ) * input.colorD;
         if( color.a < 0.5 )
                 discard;
         return color;
}
霧化:

//
// Calculates fog factor based upon distance
//
// E is defined as the base of the natural logarithm (2.71828)
float CalcFogFactor( float d )
{
         float fogCoeff = 1.0;
        
         if( FOGMODE_LINEAR == g_fogMode )
         {
                 fogCoeff = (g_fogEnd - d)/(g_fogEnd - g_fogStart);
         }
         else if( FOGMODE_EXP == g_fogMode )
         {
                 fogCoeff = 1.0 / pow( E, d*g_fogDensity );
         }
         else if( FOGMODE_EXP2 == g_fogMode )
         {
                 fogCoeff = 1.0 / pow( E, d*d*g_fogDensity*g_fogDensity );
         }
        
         return clamp( fogCoeff, 0, 1 );
}

Finally, the pixel shader uses the fog factor to determine how much of the original color and how much of the fog color to output to the pixel.

最后,PS使用霧化參數確定霧顏色和紋理顏色的混合程度。
return fog * normalColor + (1.0 - fog)*g_fogColor;

posted @ 2008-07-20 10:31 bloodbao 閱讀(350) | 評論 (0)編輯 收藏

剛開始學習DX10,發覺模型文件已經從原來的X格式變為SDKMESH格式,也就是說DX10不直接支持X文件了,
那現在該怎么辦,我在NVSDK下找到了他的解決方案,先用DX9的接口打開X文件,再用DX10接口來渲染文件。
         在DX10下,缺少了很多以前在DX9下的元素。比如,光照,材質等。
         要實現這些元素,就必須在SHADER下手動去實現,那就意味著你必須熟悉圖形學的內容,特別是其中的光照模型等內容。
比如,方向光的實現:
    //directional light-----------------------------------------------------------------
    float3 lightDir = g_lightPos - In.worldPos;
    float3 lightDirNorm = normalize(lightDir);
    float3 SDir = normalize( g_lightPos - g_eyePos);
    float cosGammaDir = dot(SDir, V);
    float dirLighting = g_Kd*dirLightIntensity*saturate( dot( N,lightDirNorm ) );
    //diffuse
    float3 diffuseDirLight = dirLighting*exDir;       
    //airlight
    float3 dirAirLight = phaseFunctionSchlick(cosGammaDir)* dirLightIntensity*float3(1-exDir.x,1-exDir.y,1-exDir.z);
    //specular
    float3 specularDirLight = saturate( pow(  dot(lightDirNorm,reflVect),g_specPower)) * dirLightIntensity * g_KsDir * exDir;
點光源的實現:
  //point light 1---------------------------------------------------------------------
    //diffuse surface radiance and airlight due to point light
    float3 pointLightDir = g_PointLightPos - In.worldPos;
    //diffuse
    float3 diffusePointLight1 = calculateDiffusePointLight(0.1,Dvp,g_DSVPointLight,pointLightDir,N,V);
    //airlight
    float3 airlight1 = calculateAirLightPointLight(Dvp,g_DSVPointLight,g_VecPointLightEye,V);
    //specular
    float3 specularPointLight = Specular(g_PointLightIntensity, g_KsPoint, length(pointLightDir), Dvp, g_specPower, normalize(pointLightDir), reflVect);
計算點光源的漫射光:
float3 calculateDiffusePointLight(float Kd,float Dvp,float Dsv,float3 pointLightDir,float3 N,float3 V)
{

    float Dsp = length(pointLightDir);
    float3 L = pointLightDir/Dsp;
    float thetas = acos(dot(N, L));
    float lightIntensity = g_PointLightIntensity * 100;
   
    //spotlight
    float angleToSpotLight = dot(-L, g_SpotLightDir);
    if(g_useSpotLight)
    {    if(angleToSpotLight > g_cosSpotlightAngle)
             lightIntensity *= abs((angleToSpotLight - g_cosSpotlightAngle)/(1-g_cosSpotlightAngle));
         else
             lightIntensity = 0;        
    }  
   
    //diffuse contribution
    float t1 = exp(-g_beta.x*Dsp)*max(cos(thetas),0)/Dsp;
    float4 t2 = g_beta.x*Gtable.SampleLevel(samLinearClamp, float2((g_beta.x*Dsp-g_diffXOffset)*g_diffXScale, (thetas-g_diffYOffset)*g_diffYScale),0)/(2*PI);
    float rCol = (t1+t2.x)*exp(-g_beta.x*Dvp)*Kd*lightIntensity/Dsp;
    float diffusePointLight = float3(rCol,rCol,rCol); 
    return diffusePointLight.xxx;
}
計算高光:
float3 Specular(float lightIntensity, float Ks, float Dsp, float Dvp, float specPow, float3 L, float3 VReflect)
{
    lightIntensity = lightIntensity * 100;
    float LDotVReflect = dot(L,VReflect);
    float thetas = acos(LDotVReflect);

    float t1 = exp(-g_beta*Dsp)*pow(max(LDotVReflect,0),specPow)/Dsp;
    float4 t2 = g_beta.x*G_20table.SampleLevel(samLinearClamp, float2((g_beta.x*Dsp-g_20XOffset)*g_20XScale, (thetas-g_20YOffset)*g_20YScale),0)/(2*PI);
    float specular = (t1+t2.x)*exp(-g_beta.x*Dvp)*Ks*lightIntensity/Dsp;
    return specular.xxx;
}
下一步,考慮如何不通過DX9接口,直接導入X文件。

posted @ 2008-07-17 10:26 bloodbao 閱讀(877) | 評論 (2)編輯 收藏

       唉,終于放署假了,我應該做些什么了。
      本來想寫個程序的,可是我發覺自已的自控力太差了。剛摸到一本小說,就被迷住了,以至于這一周都在看那本小說,程序方面是一點進度都有。那是本關于SC的小說,但為一個星際迷,我深深地被吸引了,每當我一摸到電腦,就不自覺地點進小說的網頁中,進入那個SC的虛幻空間。
看完小說,本以為還能干點什么,結果又下了本DOOM啟示錄,又迷進去了。哎,看來小說是不能碰啦,我可不想永遠呆在這個鬼地方。
等找到工作,再看小說吧。
posted @ 2008-07-15 15:53 bloodbao 閱讀(188) | 評論 (0)編輯 收藏

僅列出標題
共6頁: 1 2 3 4 5 6 
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            一卡二卡3卡四卡高清精品视频| 亚洲欧美另类中文字幕| 欧美大色视频| 美女精品网站| 欧美激情影院| 国产精品日韩精品| 国外成人在线| 亚洲经典三级| 亚洲一区二区在线播放| 欧美怡红院视频| 免费看成人av| 亚洲靠逼com| 欧美一区日韩一区| 欧美+亚洲+精品+三区| 欧美三区在线观看| 好吊成人免视频| 在线一区二区日韩| 久久综合给合| 一区二区三区视频在线播放| 欧美亚洲在线观看| 欧美另类极品videosbest最新版本| 国产精品久久久久久久久动漫| 狠狠88综合久久久久综合网| 日韩天堂在线观看| 久久久久久久久久久久久9999| 91久久久在线| 欧美一区二区免费| 欧美日韩国产欧| 在线观看不卡av| 亚洲女人小视频在线观看| 免费一级欧美片在线观看| 亚洲小说欧美另类社区| 免费一级欧美片在线播放| 国产欧美精品| 亚洲一区二区久久| 亚洲激情综合| 蜜月aⅴ免费一区二区三区 | 亚洲一区二区三区成人在线视频精品| 久久精品五月婷婷| 国产伦精品免费视频| 亚洲免费精品| 激情综合久久| 亚洲欧美国产三级| 亚洲精品日日夜夜| 老色批av在线精品| 尤物精品国产第一福利三区 | 猫咪成人在线观看| 羞羞色国产精品| 欧美日韩在线直播| 亚洲精品乱码久久久久久蜜桃麻豆 | 亚洲日本久久| 欧美国产日韩精品| 久久精品一区二区三区不卡牛牛| 欧美色一级片| 亚洲私拍自拍| 在线视频亚洲一区| 国产精品爱久久久久久久| 99视频+国产日韩欧美| 亚洲国产日韩欧美| 欧美黄色片免费观看| 亚洲美女在线国产| 亚洲精品一区二区三区婷婷月| 欧美精品一区二区久久婷婷| 日韩视频精品在线| 亚洲精品久久久一区二区三区| 欧美激情第三页| 一个人看的www久久| 日韩一级黄色大片| 国产精品xxx在线观看www| 亚洲欧美一区二区三区久久| 亚洲欧美日韩视频二区| 国产一区二区三区精品久久久| 久久久蜜桃一区二区人| 久久久久久久网| 亚洲精品国产精品国产自| 亚洲人成人一区二区在线观看| 欧美日韩在线电影| 久久aⅴ乱码一区二区三区| 欧美在线免费观看视频| 在线成人h网| 亚洲毛片av在线| 国产精品一级在线| 快射av在线播放一区| 欧美mv日韩mv国产网站app| 一区二区三区国产盗摄| 亚洲在线一区二区三区| 在线播放不卡| 亚洲毛片一区| 国内精品福利| 亚洲二区在线| 国产精品久久久久久久久久ktv | 午夜精品久久久久久久白皮肤| 一本色道久久综合亚洲精品不卡| 国产精品日韩一区| 欧美成人精品| 国产精品视频免费| 欧美黄色影院| 国产欧美日韩在线视频| 亚洲第一偷拍| 国产日韩欧美一区二区三区四区| 欧美成人午夜影院| 国产精品白丝av嫩草影院| 久久视频在线看| 欧美性色视频在线| 欧美激情中文字幕一区二区| 国产精品www| 欧美国产日韩一区二区在线观看| 国产精品扒开腿做爽爽爽视频 | 亚洲精品裸体| 狠狠综合久久av一区二区小说| 亚洲精选91| 亚洲国产视频一区二区| 香蕉av777xxx色综合一区| 亚洲美女电影在线| 蜜桃久久精品乱码一区二区| 亚洲欧美日韩在线| 欧美日韩免费观看一区=区三区| 久久久久成人精品| 国产精品影音先锋| 一本久久a久久免费精品不卡| 亚洲国产导航| 欧美与欧洲交xxxx免费观看| 亚洲综合色自拍一区| 欧美日韩高清在线播放| 免费观看亚洲视频大全| 国产亚洲福利| 亚洲欧美日韩精品久久久久| 亚洲调教视频在线观看| 欧美激情五月| 91久久精品国产91性色tv| 1024欧美极品| 久久人人爽人人爽| 玖玖玖国产精品| 精品成人在线观看| 欧美中文字幕在线视频| 久久精品国产精品| 国产婷婷97碰碰久久人人蜜臀| 亚洲网址在线| 亚洲欧美国产毛片在线| 国产精品xxx在线观看www| 亚洲美女电影在线| av成人天堂| 欧美日在线观看| 亚洲伊人伊色伊影伊综合网| 亚洲欧美日韩一区在线| 国产精品一区二区三区四区五区| 99精品视频免费全部在线| 中日韩在线视频| 国产精品嫩草影院av蜜臀| 亚洲视频日本| 久久精品国产精品亚洲综合| 国产综合在线视频| 老司机精品视频网站| 日韩视频一区二区三区在线播放| 亚洲国产成人91精品 | 亚洲欧美日韩视频二区| 国产精品理论片在线观看| 午夜伦理片一区| 麻豆精品精华液| 夜久久久久久| 国产人久久人人人人爽| 久久蜜桃av一区精品变态类天堂| 亚洲第一免费播放区| 亚洲免费网址| 在线观看不卡| 国产精品第一区| 久久婷婷国产麻豆91天堂| 日韩视频在线一区| 久久人91精品久久久久久不卡| 亚洲精品国久久99热| 欧美系列精品| 久久亚洲精品视频| 夜夜精品视频| 免费观看成人| 午夜精品偷拍| 亚洲日本成人女熟在线观看| 亚洲一区二区三区四区视频| 久久最新视频| 亚洲永久在线观看| 亚洲国产天堂久久综合网| 国产精品久久久久永久免费观看 | 亚洲国产精品尤物yw在线观看| 欧美三区视频| 免费久久精品视频| 亚洲一二三区视频在线观看| 麻豆精品一区二区综合av| 国产精品99久久久久久宅男| 影音先锋日韩精品| 国产精品中文字幕欧美| 欧美黄色小视频| 久久综合九色欧美综合狠狠| 亚洲一区二区在线播放| 久久精品国产欧美激情| 在线亚洲免费| 亚洲激情综合| 尤物yw午夜国产精品视频明星| 国产精品日日做人人爱| 欧美女同视频| 欧美激情亚洲| 欧美韩日高清|