In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly introduces "how to use C language to realize gold miner game". In daily operation, I believe that many people have doubts about how to use C language to realize gold miner game. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful for you to answer the doubts about "how to use C language to realize gold miner game"! Next, please follow the editor to study!
First of all, let's create a header file and put some structures and functions of enumerated types in it, which will make the whole project look more orderly and easier to understand. Put enumerated types in first.
Enum ATTR {/ / Array subscript i_gold=1, i_money=3, i_role=5, i_stone=9, iObk = i_stone+1, / / window size WIDTH = 1080, HEIGHT= 640, / / item quantity MINE_NUM=10,} Enum TYPE {/ / item type GOLD, / / nugget MONEY, / / purse STONE, / / stone / / swing direction LEFT, RIGHT, / / swing state M_LONG, M_NORMAL, M_SHORT,}
And then put our old friend structure in it.
Struct Role {int x; / / location of the map int y; int width;// picture width and height int height; int coin;// gold coin}; struct Mine / / item {int x; int y; int size;// is used to calculate whether there is an int type in the collision int flag;// item / / item type, purse, stone, gold nugget int gold;// value}; / / Hook struct Hook {double x bank / rope start coordinates, fixed double y; double endx;// end changing coordinates double endy; int len;// rope length int dir;// swing direction double angle;// swing angle double speed / / whether the speed double vx;// speed component double vy; int swing;// is in the state of swinging int state;// elongation, elongation, normal, shortening the subscript of the item caught by int index;//}
OK, next is our main function main.Cpp. Remember to add the header file we wrote at the beginning, and write the initialization function first.
Void GameInit () {/ / initialize the random number seed srand (GetTickCount ()); / / initialize the role data role.coin = 0; role.width = 140; role.height = 120; role.x = WIDTH / 2-role.width / 2 role.y / let the character picture center display role.y = 0 / / load picture for (int I = 0; I
< 10; i++) { char fileName[20]; sprintf(fileName, "./images/%d.jpg", i); if (i 80) { hook.dir = LEFT; } else if (hook.angle < -80) { hook.dir = RIGHT; } hook.endx = hook.x + sin(π / 180 * hook.angle) * hook.len; hook.endy = hook.y + cos(π / 180 * hook.angle) * hook.len; }}int distance(struct Hook hook){ double dis=sqrt((hook.x-hook.endx)* (hook.x - hook.endx) + (hook.y-hook.endy) * (hook.y - hook.endy)); return dis = HEIGHT) { hook.state = M_SHORT; } if (hook.state == M_LONG) { hook.endx += hook.vx; hook.endy += hook.vy; } else if (hook.state == M_SHORT) { hook.endx -= hook.vx; hook.endy -= hook.vy; //如果缩短到原来的长度,就停止缩短,判断起点和末端的距离是否等于,长度 if (distance(hook)) { hook.state = M_NORMAL; } }} 接下来是我们的抓取函数,也是比较简单 void grap(){ //找到抓取的是哪个物品 for (int i = 0; i < MINE_NUM; i++) { if (mine[i].flag && hook.endx >Mine [I] .x & & hook.endxmine [I] .y & & hook.endy < mine [I] .y + mine [I] .size) {hook.index = ibot / subscript break for keeping captured items }} if (hook.index! =-1) {hook.state = hook.endy- show; min [hook.index] .x = hook.endx- min [hook.index] .size / 2; min [hook.index] .y = hook.endy- min [hook.index] .size / 2 If (distance (hook)) {hook.state = MacroNORMAL.min [hook.index] .flag = 0; role.coin + = mine [hook.index] .gold; hook.state = MacroNORMAL; hook.index =-1 }}}
And finally, our main function.
Int main () {initgraph (WIDTH,HEIGHT,1); GameInit (); while (1) {printf ("% lf,%lf vxy (% lf,%lf)\ n", hook.endx, hook.endy,hook.vx,hook.vy); hookRock (); Gamedraw (); keyControl () Grap ();} closegraph (); return 0;} at this point, the study on "how to use C language to implement the gold miner game" is over, hoping to solve everyone's doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.