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

天行健 君子當自強而不息

Timing in Animation and Movement(3)

Moving with Time

Time−based motion doesn't just apply to animation. Movement is also a major part of your game, and basing movement on time guarantees that all systems will run your game consistently, regardless of how fast or how slow they are.

The most common use for time−based movement is when you want to move an object a set distance over a period of time. For example, suppose a player moves his joystick to the right, so your game responds by moving the on−screen game character to the right a little bit−let's say 64 units over a period of one second, which equates to 0.064 units of movement per millisecond.

Using a small function, you can calculate the number of units (as a floating−point value) to move an object based on the elapsed time between frames.

float CalcMovement(DWORD ElapsedTime, float PixelsPerSec)
{
  return (PixelsPerSec / 1000.0f * (float)ElapsedTime);
}

As you can see in the CalculateMovement function, you are using the following calculation:

PixelsPerSec / 1000.0f * ElapsedTime;

The PixelsPerSec variable contains the number of units you want to move over the period of a second. The 1000.0 value means 1000 milliseconds. Basically, you're breaking down the number of units to move per millisecond. Finally, you need to multiply by ElapsedTime to calculate the total movement to apply.

This sort of movement based on time is very basic, but it should not be overlooked. Knowledge of this function of time−based movement is essential to using more advanced features, such as smoothly moving objects along a pre−determined path.

 

Moving along Paths

As you read in the previous section, time−based movement is determined by taking the distance to travel, dividing it by 1,000, and multiplying the result by the elapsed time. In that section, I used an example in which a player pressed right on the joystick, and his character moved right a set amount of units. But what about those times when you want an object to move without user intervention? For instance, suppose a player pushes a button and bullets fly out of the big gun he is carrying. Those bullets travel along a set path at a set speed. You can set a velocity for each of those bullets, negating the need to use paths, but what about those super−bullets in your game that can swoop through parts of your level, perhaps along a pre−set path?

Those special instances require you to set up the coordinates of the travel paths in advance, and to do some quick calculations to determine where an object can be placed inside those paths. And what about moving objects such as characters, power−ups, and platforms? You guessed it−using paths is the perfect solution for all your movement needs!

I am going to discuss two of the most frequently used types of paths−straight and curved. I will start by explaining how to use straight paths.

 

Following Straight Paths

A straight path is just that−straight. The path moves from the starting point to the ending point with no breaks or turns. Generally, you define a straight line using a pair of coordinates−the starting point and the ending point. To follow a straight path, you only need to walk along the line from Point A to Point B.

To move an object along a straight path, you must calculate the coordinates of a point along the line using some simple formulas. For instance, as Figure 2.2 illustrates, to calculate a point at the midpoint of the line using a scalar value (ranging from 0 to 1), you calculate the difference in the endpoint's coordinates, multiply by the scalar value, and add the result to the starting point's coordinates.

// Define starting and ending points of straight path
// Scalar = position to calculate (0 to 1)
D3DXVECTOR3 vecStart = D3DXVECTOR3(0.0f, 0.0f, 0.0f);
D3DXVECTOR3 vecEnd = D3DXVECTOR3(10.0f, 20.0f, 30.0f);
D3DXVECTOR3 vecPos = (vecEnd − vecStart) * Scalar + vecStart;

If you were to set Scalar to 0.5, then vecPos would contain the coordinates 5.0, 10.0, 15.0, which happen to be the midpoint of the path. Now suppose you don't want to use a scalar value. What about using 3D units instead? For example, instead of using a scalar value of 0.5, suppose you want to know the coordinates of a point that is 32 units from the starting coordinates.

To calculate the coordinates using 3D units as a measurement, calculate the length of the path using the D3DXVec3Length function, and then divide the position you want to use by the resulting value to obtain a scalar value to use in the previous calculations.

For example, to find the coordinates of the point that is 32 units into the path defined previously, you can use the following code:

// Pos = position (in 3−D units) of point in path to calculate
// Define starting and ending points of straight path
D3DXVECTOR3 vecStart = D3DXVECTOR3(0.0f, 0.0f, 0.0f);
D3DXVECTOR3 vecEnd = D3DXVECTOR3(10.0f, 20.0f, 30.0f);

// Get the length of the path
float Length = D3DXVec3Length(&(vecEnd−vecStart));

// Calculate the scalar by dividing pos by length
float Scalar = Pos / Length;

// Use scalar to calculate coordinates
D3DXVECTOR3 vecPos = (vecEnd − vecStart) * Scalar + vecStart;

Now that you can calculate the exact position of any point along the path, you can use this knowledge to move an object along the path. Following the time−based theory of movement, suppose you want to move an object from one point to another over a period of 1,000 milliseconds. The following code (processed once per frame) will accomplish this, continuously looping back from the end to the start of the path in an endless cycle.

// vecPoints[2] = path's starting and ending coordinate vectors
// Every frame, use the following code to position an object along the straight path based on the current time.
float Scalar = (float)(timeGetTime() % 1001) / 1000.0f;

D3DXVECTOR3 vecPos = (vecPoints[1] − vecPoints[0]) * Scalar + vecPoints[0];

// Use vecPos.x, vecPos.y, and vecPos.z coordinates for object


posted on 2008-04-16 14:16 lovedday 閱讀(415) 評論(0)  編輯 收藏 引用

公告

導航

統計

常用鏈接

隨筆分類(178)

3D游戲編程相關鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            久久久91精品国产| 欧美在线视频播放| 亚洲国产日本| 欧美福利专区| 亚洲视频一区二区在线观看 | 91久久视频| 亚洲精品黄色| 国产精品地址| 久久免费99精品久久久久久| 另类成人小视频在线| 日韩午夜av在线| 99视频有精品| 国产综合婷婷| 亚洲精品欧美在线| 国产欧美日韩不卡| 欧美大秀在线观看| 国产精品va| 麻豆国产精品一区二区三区| 欧美成人免费va影院高清| 亚洲午夜精品久久| 欧美在线精品免播放器视频| 亚洲人午夜精品免费| 亚洲视屏在线播放| 亚洲国产精品va在线看黑人动漫| 亚洲精品看片| 激情欧美一区二区三区| 日韩视频在线观看| 激情综合在线| 这里只有精品电影| 亚洲日本在线观看| 欧美一区二区黄色| 亚洲视频免费在线观看| 久久久久久综合| 新67194成人永久网站| 欧美大片在线观看一区二区| 欧美中文字幕在线观看| 欧美精品成人一区二区在线观看| 久久精品在这里| 欧美日韩在线播放一区二区| 欧美高清在线一区二区| 国产视频欧美| 亚洲午夜精品17c| 99精品欧美一区| 久久免费午夜影院| 久久黄金**| 国产精品自拍一区| 亚洲一区二区三区高清不卡| 日韩午夜av在线| 蜜桃精品一区二区三区| 久久嫩草精品久久久久| 国产精品免费观看视频| 99亚洲一区二区| av不卡免费看| 欧美黄色免费网站| 亚洲高清网站| 亚洲第一天堂av| 久久人体大胆视频| 免费观看亚洲视频大全| 国产综合色产| 久久精品理论片| 久久久91精品国产一区二区三区| 国产精品一区亚洲| 亚洲综合视频网| 午夜国产精品视频免费体验区| 欧美日韩视频一区二区三区| 亚洲精品国产视频| 99av国产精品欲麻豆| 欧美黑人在线播放| 91久久久一线二线三线品牌| 日韩一级网站| 欧美日韩一级视频| 在线亚洲免费| 欧美在线免费视屏| 韩国美女久久| 免费h精品视频在线播放| 欧美大色视频| 在线一区二区三区四区| 国产精品国产三级国产专播精品人| 亚洲视频精选| 久久成人久久爱| 在线成人国产| 欧美精品xxxxbbbb| 亚洲一区二区在| 久久综合国产精品| 亚洲精品一区久久久久久| 欧美日韩一区二区在线播放| 亚洲免费伊人电影在线观看av| 久久国产精品亚洲va麻豆| 伊人久久综合| 欧美日韩国产天堂| 亚洲欧美视频一区| 欧美激情乱人伦| 亚洲欧美日韩另类精品一区二区三区 | 亚洲欧美日韩精品在线| 国内外成人在线视频| 蜜桃伊人久久| 亚洲一区尤物| 亚洲成在线观看| 午夜天堂精品久久久久| 亚洲高清在线观看一区| 欧美日韩在线免费视频| 久久精品综合| 国产精品99久久久久久久女警 | 欧美制服丝袜第一页| 亚洲国产日韩精品| 久久久久久久999精品视频| 亚洲激情视频| 国产一区二区观看| 欧美日韩亚洲免费| 免费看成人av| 性8sex亚洲区入口| 亚洲免费观看| 女人色偷偷aa久久天堂| 欧美一区二区久久久| 亚洲免费成人| 亚洲高清免费视频| 国产午夜精品理论片a级探花| 欧美精品日韩www.p站| 欧美一区二区视频97| 亚洲美女中文字幕| 欧美电影免费网站| 久久综合中文字幕| 欧美一区二区视频网站| 亚洲一区二区三区乱码aⅴ蜜桃女| 1024精品一区二区三区| 国产婷婷色综合av蜜臀av| 欧美性感一类影片在线播放 | 久久久水蜜桃| 性色av一区二区三区在线观看| 日韩性生活视频| 亚洲人成在线观看网站高清| 蜜臀久久久99精品久久久久久| 欧美一级播放| 午夜在线视频一区二区区别| 亚洲网站视频福利| 一区二区日本视频| 亚洲美女视频| 一卡二卡3卡四卡高清精品视频 | 国产精品劲爆视频| 欧美日韩中文精品| 欧美三区美女| 欧美午夜无遮挡| 国产精品三级久久久久久电影| 欧美日韩小视频| 欧美香蕉大胸在线视频观看| 欧美吻胸吃奶大尺度电影| 欧美三级日本三级少妇99| 欧美日韩综合精品| 国产精品久久久久免费a∨| 国产精品美女黄网| 国产啪精品视频| 激情亚洲成人| 亚洲人成在线播放网站岛国| 亚洲伦理在线| 亚洲综合首页| 欧美综合二区| 欧美1区免费| 亚洲激情女人| 亚洲综合欧美| 久久av红桃一区二区小说| 久久偷窥视频| 欧美日韩国产在线| 国产伦精品一区二区三区| 国一区二区在线观看| 亚洲国产精品久久久久婷婷老年| 亚洲美女在线看| 亚洲欧美伊人| 久久综合色播五月| 亚洲日本va在线观看| 亚洲女人小视频在线观看| 久久久国产一区二区| 欧美精品日本| 国产午夜亚洲精品羞羞网站 | 国产精品永久免费在线| 黄色成人片子| 在线一区欧美| 久久免费国产精品| 亚洲精品在线观| 久久激情久久| 欧美日韩综合视频| 一区二区三区在线免费观看| 一区二区日韩| 蜜臀91精品一区二区三区| 一本久道综合久久精品| 久久欧美肥婆一二区| 欧美视频成人| 亚洲激情视频在线观看| 欧美一区视频| 亚洲人成网站色ww在线| 欧美在线视频一区| 欧美偷拍另类| 亚洲人成人77777线观看| 久久av资源网| 宅男66日本亚洲欧美视频| 免费的成人av| 激情久久久久久| 欧美专区日韩专区| 亚洲素人在线| 欧美日韩精品三区| 亚洲精品一区在线观看香蕉|