久久久久久久999_99精品久久精品一区二区爱城_成人欧美一区二区三区在线播放_国产精品日本一区二区不卡视频_国产午夜视频_欧美精品在线观看免费

 找回密碼
 立即注冊(cè)

QQ登錄

只需一步,快速開始

搜索
查看: 5611|回復(fù): 2
打印 上一主題 下一主題
收起左側(cè)

C語言對(duì)對(duì)碰游戲源碼

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
    對(duì)對(duì)碰是一款經(jīng)典的消除類游戲,玩家只要通過點(diǎn)擊磚塊來使磚塊之間互相還位,連成3個(gè)以上的磚塊來消除得分。
    支持四種道具。
    背景音樂和圖片可以自定義,但是注意不要改名。圖片都是.jpg格式,背景音樂是.mp3格式。
    音樂:天空之城。
    ——作者:自然向日葵


源程序:
  1. ////////////////////////////////////////////////////////////
  2. //畫素材的x和y都是反的,因?yàn)閤表示行,但是畫出來x表示列,y同
  3. ////////////////////////////////////////////////////////////

  4. /* 【自學(xué)去】網(wǎng)站收集 http://www.zixue7.com */

  5. #include <graphics.h>
  6. #include <fstream>
  7. #include <strstream>
  8. #include <iomanip>
  9. #include <cstdlib>
  10. #include <ctime>
  11. #pragma comment(lib, "Winmm.lib")
  12. using namespace std;


  13. /*******************************定義枚舉類型*****************************/
  14. enum color{blank, red, yellow, blue, green, white, orange, purple, shizijia, zhadan, qicai, alarm};


  15. /*******************************定義全局變量*****************************/
  16. const int MaxT = 12;        // 時(shí)間上限
  17. const int T = 10 * MaxT;// 時(shí)間速度
  18. const int V = 300;                // 停留時(shí)間
  19. clock_t start, now;                // 控制時(shí)間
  20. color gem[9][8];                // 地圖
  21.                                                 // IMAGE對(duì)象
  22. IMAGE img[12], music_img[2], exit_img, jindutiao;
  23. int Score, Time;                // 成績(jī) 時(shí)間
  24. bool Flag, Music = true;// 是否加載 音樂


  25. /**********************************函數(shù)聲明*****************************/
  26. void load(void);        // 加載IMAGE對(duì)象
  27. void Blank(void);        // 清空
  28. bool soso(void);        // 搜索空格
  29. bool baidu(void);        // 搜索解法
  30. void New(void);                // 更新
  31. void print(void);        // 輸出
  32. bool judge(void);        // 判斷是否可以消除
  33. void fall(void);        // 下落
  34. void draw(void);        // 消除
  35. bool quit(void);        // 是否重新開始
  36. void play(void);        // 游戲過程


  37. /**********************************定義函數(shù)*****************************/
  38. void load(void)
  39. {
  40.         char c[20];
  41.         int i;

  42.         // 加載IMAGE對(duì)象
  43.         for (i = 0; i < 12; i++)
  44.         {
  45.                 ostrstream strout(c, 50);
  46.                 strout <<"圖片\\" <<i <<".jpg" <<ends;
  47.                 loadimage(&img[i], c);
  48.         }
  49.         loadimage(&music_img[0], "圖片\\音樂關(guān).jpg");
  50.         loadimage(&music_img[1], "圖片\\音樂開.jpg");
  51.         loadimage(&exit_img, "圖片\\退出.jpg");
  52.         loadimage(&jindutiao, "圖片\\進(jìn)度條.jpg");

  53.         // 加載音樂
  54.         mciSendString("open 背景音樂.mp3 alias mymusic", NULL, 0, NULL);

  55.         // 隨機(jī)種子
  56.         srand(unsigned(time(NULL)));

  57.         // 打開文件
  58.         ifstream fin("存檔.dat");
  59.         if (!fin)
  60.                 throw -1;        // 如果打開失敗則拋出異常

  61.         // 讀存檔
  62.         fin >>Flag >>Music;
  63.         if (Flag)
  64.         {
  65.                 HWND wnd = GetHWnd();
  66.                 SetWindowText(wnd, "對(duì)對(duì)碰");
  67.                 if (MessageBox(wnd, "是否繼續(xù)上次游戲?", "游戲開始", MB_YESNO | MB_ICONQUESTION) == IDYES)
  68.                 {
  69.                         fin >>Score >>Time;
  70.                         for (i = 0; i < 9; i++)
  71.                                 for (int j = 0; j < 8; j++)
  72.                                 {
  73.                                         int t;
  74.                                         fin >>t;
  75.                                         gem[i][j] = color(t);
  76.                                 }
  77.                 }
  78.                 else
  79.                         Flag = false;
  80.         }
  81.         fin.close();
  82. }

  83. void Blank(void)
  84. {
  85.         for (int i = 1; i < 9; i++)
  86.                 for (int j = 0; j < 8; j++)
  87.                         gem[i][j] = blank;
  88.         print();
  89.         fall();
  90. }

  91. bool soso(void)
  92. {
  93.         for (int i = 1; i < 9; i++)
  94.                 for (int j = 0; j < 8; j++)
  95.                         if (gem[i][j] == blank)
  96.                                 return true;
  97.         return false;
  98. }

  99. bool baidu(void)
  100. {
  101.         int i, j;
  102.         color t;
  103.         bool flag = false;

  104.         // 如果有一個(gè)道具則返回真
  105.         for (i = 1; i < 9; i++)
  106.                 for (j = 0; j < 8; j++)
  107.                         if (gem[i][j] >= shizijia)
  108.                                 return true;

  109.         // 搜索解法
  110.         for (i = 1; i < 9; i++)
  111.                 for (j = 0; j < 7; j++)
  112.                 {
  113.                         t = gem[i][j];
  114.                         gem[i][j] = gem[i][j + 1];
  115.                         gem[i][j + 1] = t;
  116.                         if (judge())
  117.                                 flag = true;
  118.                         t = gem[i][j];
  119.                         gem[i][j] = gem[i][j + 1];
  120.                         gem[i][j + 1] = t;
  121.                         if (flag)
  122.                                 return true;
  123.                 }
  124.         for (i = 1; i < 7; i++)
  125.                 for (j = 0; j < 8; j++)
  126.                 {
  127.                         t = gem[i][j];
  128.                         gem[i][j] = gem[i + 1][j];
  129.                         gem[i + 1][j] = t;
  130.                         if (judge())
  131.                                 flag = true;
  132.                         t = gem[i][j];
  133.                         gem[i][j] = gem[i + 1][j];
  134.                         gem[i + 1][j] = t;
  135.                         if (flag)
  136.                                 return true;
  137.                 }
  138.         return false;
  139. }

  140. void New(void)
  141. {
  142.         static int old_score = -1, old_time = T;
  143.         bool flag = false;
  144.         if (Score != old_score)        // 更新分?jǐn)?shù)
  145.         {
  146.                 if (Score > 999999999)
  147.                 {
  148.                         if (MessageBox(GetHWnd(), "恭喜你達(dá)到了最高分!\n是否重新開始?", "游戲結(jié)束", MB_YESNO | MB_ICONQUESTION) == IDYES)
  149.                                 Score = 0;
  150.                         else
  151.                                 exit(0);
  152.                 }
  153.                 char s[15];
  154.                 ostrstream strout(s, 15);
  155.                 strout <<'

  156. 下載:
  157. c語言對(duì)對(duì)碰游戲源碼.zip (4.13 MB, 下載次數(shù): 14)

  158. <<setiosflags(ios::right) <<setw(9) <<Score <<ends;
  159.                 setfont(30, 0, "微軟雅黑");
  160.                 setcolor(RGB(255, 128, 0));
  161.                 outtextxy(480, 60, s);
  162.                 old_score = Score;
  163.                 flag = true;
  164.         }
  165.         if (Time != old_time)        // 更新時(shí)間
  166.         {
  167.                 if (Time > old_time)
  168.                         putimage(540, 140, &jindutiao);
  169.                 setcolor(BLACK);
  170.                 for (int i = 0; i < T - Time; i++)
  171.                 {
  172.                         line(540, 140 + 2 * i, 580, 140 + 2 * i);
  173.                         line(540, 140 + 2 * i + 1, 580, 140 + 2 * i + 1);
  174.                 }
  175.                 old_time = Time;
  176.                 flag = true;
  177.         }
  178.         if (flag)                                // 寫存檔
  179.         {
  180.                 ofstream fout("存檔.dat");
  181.                 fout <<Flag                <<'\t'
  182.                          <<Music        <<'\t'
  183.                          <<Score        <<'\t'
  184.                          <<Time                <<endl;
  185.                 for (int i = 0; i < 9; i++)
  186.                 {
  187.                         for (int j = 0; j < 8; j++)
  188.                                 fout <<int(gem[i][j]) <<'\t';
  189.                         fout <<endl;
  190.                 }
  191.                 fout.close();
  192.         }
  193. }

  194. void print(void)
  195. {
  196.         int i, j;
  197.         for (i = 1; i < 9; i++)
  198.                 for (j = 0; j < 8; j++)
  199.                         putimage(60 * j, 60 * (i - 1), &img[int(gem[i][j])]);
  200.         New();
  201. }

  202. bool judge(void)
  203. {
  204.         int i, j;
  205.         for (i = 1; i < 9; i++)
  206.                 for (j = 0; j < 6; j++)
  207.                         if (gem[i][j] == gem[i][j + 1] && gem[i][j] == gem[i][j + 2])
  208.                                 return true;
  209.         for (i = 1; i < 7; i++)
  210.                 for (j = 0; j < 8; j++)
  211.                         if (gem[i][j] == gem[i + 1][j] && gem[i][j] == gem[i + 2][j])
  212.                                 return true;
  213.         return false;
  214. }

  215. void fall(void)
  216. {
  217.         {
  218.                 int i, j, a[8] = {0};
  219.                 bool sign = false;
  220.                 for (j = 0; j < 8; j++)
  221.                         for (i = 8; i >= 1; i--)
  222.                                 if (gem[i][j] == blank)
  223.                                 {
  224.                                         a[j] = i;
  225.                                         sign = true;
  226.                                         break;
  227.                                 }
  228.                 if (sign == false)
  229.                         return;
  230.                 IMAGE im[8];
  231.                 for (j = 0; j < 8; j++)
  232.                         if (a[j] > 1)
  233.                                 getimage(&im[j], 60 * j, 0, 60, 60 * (a[j] - 1));
  234.                 for (i = 0; i < 60 ; i += 2)
  235.                         for (j = 0; j < 8; j++)
  236.                                 if (a[j] > 0)
  237.                                 {
  238.                                         if (a[j] > 1)
  239.                                                 putimage(60 * j, i + 2, &im[j]);
  240.                                         putimage(60 * j, i + 2 - 60, &img[int(gem[0][j])]);
  241.                                         Sleep(1);
  242.                                 }
  243.                 for (j = 0; j < 8; j++)
  244.                         if (a[j] > 0)
  245.                         {
  246.                                 for (i = a[j]; i > 0; i--)
  247.                                         gem[i][j] = gem[i - 1][j];
  248.                                 if (rand() % 50 == 0)
  249.                                         gem[0][j] = color(rand() % 4 + 8);
  250.                                 else
  251.                                         gem[0][j] = color(rand() % 7 + 1);
  252.                         }
  253.         }        // 加對(duì)大括號(hào)使遞歸時(shí)撤銷內(nèi)存空間
  254.         if (soso())
  255.                 fall();
  256.         if (judge())
  257.                 draw();
  258. }

  259. void draw(void)
  260. {
  261.         {
  262.                 int i, j;
  263.                 bool a[9][8] = {false};
  264.                 for (i = 1; i < 9; i++)
  265.                         for (j = 0; j < 6; j++)
  266.                                 if (gem[i][j] == gem[i][j + 1] && gem[i][j] == gem[i][j + 2])
  267.                                         a[i][j] = a[i][j + 1] = a[i][j + 2] = true;
  268.                 for (i = 1; i < 7; i++)
  269.                         for (j = 0; j < 8; j++)
  270.                                 if (gem[i][j] == gem[i + 1][j] && gem[i][j] == gem[i + 2][j])
  271.                                         a[i][j] = a[i + 1][j] = a[i + 2][j] = true;
  272.                 for (i = 1; i < 9; i++)
  273.                         for (j = 0; j < 8; j++)
  274.                                 if (a[i][j])
  275.                                 {
  276.                                         gem[i][j] = blank;
  277.                                         Score += 10;
  278.                                 }
  279.                 Sleep(V);
  280.                 Time += T / MaxT;
  281.                 if (Time > T)
  282.                         Time = T;
  283.                 print();
  284.         }        // 加對(duì)大括號(hào)使遞歸時(shí)撤銷內(nèi)存空間
  285.         fall();
  286. }

  287. bool quit(void)
  288. {
  289.         char str[50];
  290.         ostrstream strout(str, 50);
  291.         strout <<"得分:" <<Score <<"\n重新開始嗎?" <<ends;
  292.         if (MessageBox(GetHWnd(), str, "游戲結(jié)束", MB_YESNO | MB_ICONQUESTION) == IDYES)
  293.                 return true;
  294.         return false;
  295. }

  296. void play(void)
  297. {
  298.         MOUSEMSG m;
  299.         int i, j, x, y, x1, y1;
  300.         char fx;
  301.         color t;
  302.         bool sign;
  303.         if (Flag == false)
  304.         {
  305.                 do
  306.                 {
  307.                         for (i = 0; i < 9; i++)
  308.                                 for (j = 0; j < 8; j++)
  309.                                         gem[i][j] = color(rand() % 7 + 1);
  310.                 }while (judge() || !baidu());
  311.                 Score = 0;
  312.                 Time = T;
  313.         }
  314.         setbkcolor(BLACK);
  315.         cleardevice();
  316.         setfont(30, 0, "微軟雅黑");
  317.         setcolor(RGB(255, 128, 0));
  318.         outtextxy(480, 60, "$       0");
  319.         putimage(480, 400, &music_img[int(Music)]);
  320.         putimage(560, 400, &exit_img);
  321.         putimage(540, 140, &jindutiao);
  322.         print();
  323.         now = start = clock();
  324.         Flag = true;
  325.         do
  326.         {
  327.                 if (soso())
  328.                         fall();
  329.                 fx = 0;
  330.                 sign = true;
  331.                 while (true)
  332.                 {
  333.                         if (MouseHit())
  334.                         {
  335.                                 m = GetMouseMsg();
  336.                                 x1 = m.x;
  337.                                 y1 = m.y;
  338.                                 if (m.uMsg == WM_LBUTTONDOWN)
  339.                                 {
  340.                                         if (x1 < 480)
  341.                                         {
  342.                                                 x = y1 / 60 + 1;
  343.                                                 y = x1 / 60;
  344.                                                 switch (gem[x][y])
  345.                                                 {
  346.                                                 case shizijia:
  347.                                                         for (i = 1; i < 9; i++)
  348.                                                         {
  349.                                                                 gem[i][y] = blank;
  350.                                                                 Score += 10;
  351.                                                         }
  352.                                                         for (j = 0; j < 8; j++)
  353.                                                         {
  354.                                                                 gem[x][j] = blank;
  355.                                                                 Score += 10;
  356.                                                         }
  357.                                                         Score -= 20;
  358.                                                         Time += T / MaxT;
  359.                                                         if (Time > T)
  360.                                                                 Time = T;
  361.                                                         print();
  362.                                                         Sleep(V);
  363.                                                         fall();
  364.                                                         if (!baidu())
  365.                                                                 Blank();
  366.                                                         break;

  367.                                                 case zhadan:
  368.                                                         if (x > 1)
  369.                                                         {
  370.                                                                 gem[x - 1][y] = blank;
  371.                                                                 Score += 10;
  372.                                                                 if (y > 0)
  373.                                                                 {
  374.                                                                         gem[x - 1][y - 1] =blank;
  375.                                                                         Score += 10;
  376.                                                                 }
  377.                                                         }
  378.                                                         if (y > 0)
  379.                                                         {
  380.                                                                 gem[x][y - 1] = blank;
  381.                                                                 if (x < 8)
  382.                                                                 {
  383.                                                                         gem[x + 1][y - 1] =blank;
  384.                                                                         Score += 10;
  385.                                                                 }
  386.                                                         }
  387.                                                         if (x < 8)
  388.                                                         {
  389.                                                                 gem[x + 1][y] = blank;
  390.                                                                 if (y < 7)
  391.                                                                 {
  392.                                                                         gem[x + 1][y + 1] =blank;
  393.                                                                         Score += 10;
  394.                                                                 }
  395.                                                         }
  396.                                                         if (y < 7)
  397.                                                         {
  398.                                                                 gem[x][y + 1] = blank;
  399.                                                                 if (x > 1)
  400.                                                                 {
  401.                                                                         gem[x - 1][y + 1] =blank;
  402.                                                                         Score += 10;
  403.                                                                 }                                                       
  404.                                                         }
  405.                                                         gem[x][y] = blank;
  406.                                                         Time += T / MaxT;
  407.                                                         if (Time > T)
  408.                                                                 Time = T;
  409.                                                         print();
  410.                                                         Sleep(V);
  411.                                                         fall();
  412.                                                         if (!baidu())
  413.                                                                 Blank();
  414.                                                         break;

  415.                                                 case qicai:
  416.                                                         t = color(rand() % 7 + 1);
  417.                                                         putimage(60 * y, 60 * (x - 1), &img[int(t)]);
  418.                                                         Sleep(V);
  419.                                                         for (i = 1; i < 9; i++)
  420.                                                                 for (j = 0; j < 8; j++)
  421.                                                                         if (gem[i][j] == t)
  422.                                                                         {
  423.                                                                                 gem[i][j] = blank;
  424.                                                                                 putimage(60 * j, 60 * (i - 1), &img[0]);
  425.                                                                                 Score += 10;
  426.                                                                         }
  427.                                                         gem[x][y] = blank;
  428.                                                         Time += T / MaxT;
  429.                                                         if (Time > T)
  430.                                                                 Time = T;
  431.                                                         print();
  432.                                                         fall();
  433.                                                         if (!baidu())
  434.                                                                 Blank();
  435.                                                         break;

  436.                                                 case alarm:
  437.                                                         Time = T;
  438.                                                         gem[x][y] = blank;
  439.                                                         print();
  440.                                                         fall();
  441.                                                         if (!baidu())
  442.                                                                 Blank();
  443.                                                         break;
  444.                                                 }
  445.                                                 break;
  446.                                         }
  447.                                         else if (x1 > 480 && x1 < 560 && y1 > 400 && y1 < 480)
  448.                                         {
  449.                                                 if (Music)
  450.                                                         mciSendString("stop mymusic", NULL, 0, NULL);
  451.                                                 else
  452.                                                         mciSendString("play mymusic from 0 repeat", NULL, 0, NULL);
  453.                                                 Music = !Music;
  454.                                                 putimage(480, 400, &music_img[int(Music)]);
  455.                                         }
  456.                                         else if (x1 > 560 && x1 < 640 && y1 > 400 && y1 < 480)
  457.                                                 exit(0);
  458.                                 }
  459.                         }
  460.                         now = clock();
  461.                         if (now - start >= CLOCKS_PER_SEC * MaxT / T)
  462.                         {
  463.                                 start = now;
  464.                                 Time--;
  465.                                 New();
  466.                                 if (Time <= 0)
  467.                                         return;
  468.                         }
  469.                 }
  470.                 while (m.mkLButton && m.y < 480)
  471.                 {
  472.                         m = GetMouseMsg();
  473.                         x = m.x;
  474.                         y = m.y;
  475.                         if (x - x1 > 30 || x1 - x > 30 || y - y1 > 30 || y1 - y > 30)
  476.                         {
  477.                                 sign = false;
  478.                                 break;
  479.                         }
  480.                         now = clock();
  481.                         if (now - start >= CLOCKS_PER_SEC * MaxT / T)
  482.                         {
  483.                                 start = now;
  484.                                 Time--;
  485.                                 New();
  486.                                 if (Time <= 0)
  487.                                         return;
  488.                         }
  489.                 }
  490.                 if(sign)
  491.                 {
  492.                         putimage(x1 - x1 % 60, y1 - y1 % 60, &img[int(gem[y1 / 60 + 1][x1 / 60])], SRCPAINT);
  493.                         continue;
  494.                 }
  495.                 if (y1 - y > 30 && y1 / 60 > 0)
  496.                         fx = 'u';
  497.                 if (y - y1 > 30 && y1 / 60 < 7)
  498.                         fx = 'd';
  499.                 if (x1 - x > 30 && x1 / 60 > 0)
  500.                         fx = 'l';
  501.                 if (x - x1 > 30 && x1 / 60 < 7)
  502.                         fx = 'r';
  503.                 x = y1 / 60 + 1;
  504.                 y = x1 / 60;
  505.                 x1 = y1 = 0;
  506.                 switch (fx)
  507.                 {
  508.                         case 'u':x1 = -1;        break;
  509.                         case 'd':x1 = 1;        break;
  510.                         case 'l':y1 = -1;        break;
  511.                         case 'r':y1 = 1;        break;
  512.                         case '\0':continue;
  513.                 }
  514.                 for (i = 0; i < 60;)
  515.                 {
  516.                         putimage(60 * y, 60 * (x - 1), &img[0]);
  517.                         putimage(60 * y, 60 * (x - 1), &img[0]);
  518.                         i += 1;
  519.                         putimage(60 * (y + y1) - i * y1, 60 * (x - 1 + x1) - i * x1, &img[int(gem[x + x1][y + y1])]);
  520.                         putimage(60 * y + i * y1, 60 * (x - 1) + i * x1, &img[int(gem[x][y])]);
  521.                         Sleep(2);
  522.                 }
  523.                 t = gem[x][y];
  524.                 gem[x][y] = gem[x + x1][y + y1];
  525.                 gem[x + x1][y + y1] = t;
  526.                 if (judge())
  527.                 {
  528.                         draw();
  529.                         if (!baidu())
  530.                                 Blank();
  531.                 }
  532.                 else
  533.                 {
  534.                         for (i = 0; i < 60;)
  535.                         {
  536.                                 putimage(60 * y, 60 * (x - 1), &img[0]);
  537.                                 putimage(60 * y, 60 * (x - 1), &img[0]);
  538.                                 i += 1;
  539.                                 putimage(60 * (y + y1) - i * y1, 60 * (x - 1 + x1) - i * x1, &img[int(gem[x + x1][y + y1])]);
  540.                                 putimage(60 * y + i * y1, 60 * (x - 1) + i * x1, &img[int(gem[x][y])]);
  541.                                 Sleep(2);
  542.                         }
  543.                         t = gem[x][y];
  544.                         gem[x][y] = gem[x + x1][y + y1];
  545.                         gem[x + x1][y + y1] = t;
  546.                 }
  547.                 now = clock();
  548.                 if (now - start >= CLOCKS_PER_SEC * MaxT / T)
  549.                 {
  550.                         start = now;
  551.                         Time--;
  552.                         New();
  553.                         if (Time <= 0)
  554.                                 return;
  555.                 }
  556.         }while (true);
  557. }


  558. /***********************************主函數(shù)******************************/
  559. int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
  560. {
  561.         try
  562.         {
  563.                 // 加載素材
  564.                 load();
  565.         }
  566.         catch (int)
  567.         {
  568.                 ofstream fout("存檔.dat");
  569.                 fout <<false <<'\t' <<true <<endl;
  570.         }

  571.         // 打開界面
  572.         initgraph(640, 480);

  573.         // 游戲過程
  574.         do
  575.         {
  576.                 if (Music)
  577.                         mciSendString("play mymusic from 0 repeat", NULL, 0, NULL);
  578.                 play();
  579.                 if (Music)
  580.                         mciSendString("stop mymusic", NULL, 0, NULL);
  581.                 Flag = false;
  582.         }while (quit());

  583.         // 關(guān)閉游戲
  584.         ofstream fout("存檔.dat");
  585.         fout <<false <<'\t' <<Music <<endl;
  586.         fout.close();
  587.         mciSendString("close mymusic", NULL, 0, NULL);
  588.         closegraph();
  589.         return 0;
  590. }


  591. /***********************************THE END************************************/
復(fù)制代碼


下載:


評(píng)分

參與人數(shù) 1黑幣 +50 收起 理由
admin + 50 共享資料的黑幣獎(jiǎng)勵(lì)!

查看全部評(píng)分

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 分享淘帖 頂 踩
回復(fù)

使用道具 舉報(bào)

沙發(fā)
ID:288791 發(fā)表于 2018-3-7 17:09 | 只看該作者
加油!!!!!
回復(fù)

使用道具 舉報(bào)

板凳
ID:293258 發(fā)表于 2018-3-17 18:47 | 只看該作者
現(xiàn)在用C語言直接編游戲的很少了,基本都是用引擎
回復(fù)

使用道具 舉報(bào)

本版積分規(guī)則

手機(jī)版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術(shù)交流QQ群281945664

Powered by 單片機(jī)教程網(wǎng)

快速回復(fù) 返回頂部 返回列表
主站蜘蛛池模板: 日韩成人国产 | 久久r精品 | 成人黄色电影在线播放 | 国产精品亚洲精品日韩已方 | 亚洲人成人一区二区在线观看 | 日本免费在线 | 国产精品国产三级国产播12软件 | 久草精品视频 | 日本不卡免费新一二三区 | 亚洲成人一区二区 | 3p视频在线观看 | 一级黄色毛片a | 成人性视频免费网站 | 久久久久久国产 | 欧美成人精品一区二区三区 | 一区二区三区在线观看视频 | 男女羞羞免费视频 | 精品婷婷 | 99久久影院 | 国产免费拔擦拔擦8x高清 | 草草视频在线免费观看 | 亚洲精品日韩精品 | 黄色a三级 | 自拍视频精品 | 国产黄色免费网站 | 成人一区二区在线 | 日韩精品一区二区三区在线观看 | 国产福利视频 | 天堂综合网久久 | 99爱国产 | 久久躁日日躁aaaaxxxx | 玖玖综合网 | 国产98色在线 | 日韩 | a毛片| 欧美最猛黑人xxxx黑人 | 国产精品久久在线观看 | www.亚洲视频 | 国产精品成人在线观看 | 最新中文在线视频 | 欧美影院 | 成人影院一区二区三区 |