c语言游戏实战(10):坤坤的篮球回避秀

2024-03-05 03:44

本文主要是介绍c语言游戏实战(10):坤坤的篮球回避秀,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  前言:

这款简易版的球球大作战是博主耗时两天半完成的,玩家需要控制坤坤在游戏界面上移动,来躲避游戏界面上方不断掉下来的篮球。本游戏使用C语言和easyx图形库编写,旨在帮助初学者了解游戏开发的基本概念和技巧。

在开始编写代码之前,我们需要先了解一下游戏的基本规则和功能:

游戏界面:游戏界面是一个矩形区域,玩家可以在这个区域内控制球的移动。

坤坤:玩家控制的坤坤可以在游戏界面内自由移动,按下特定的按键后可以跳跃。

篮球:篮球在游戏界面的正上方源源不断地生成,并下降。

坤坤触碰篮球:当坤坤触碰到上方掉下来的篮球时,坤坤的血量就会降低一格,一共五格血量降完为止。

接下来,我们将通过以下几个步骤来实现这个游戏:

1. 初始化游戏界面和模型的信息。

2. 处理键盘输入,实现玩家控制坤坤的移动和跳跃。

3. 生成足够数量的篮球。

4. 生成篮球,并控制其移动。

5. 检测篮球与坤坤之间的触碰关系,并减少相应的血量。

通过学习这个游戏的开发过程,初学者将能够掌握C语言编程和easyx图形库的基本技巧。

1. 前期准备

第一步:我们需要在easyx官网下载好easyx图形库。(具体操作可以去b站搜索相关视频)

第二步:按照下图的步骤将字符集改为多节字符集,因为如果使用的字符集只包含有限数量的字符,可能无法支持所有需要的字符,导致无法正确加载图像。因此,将字符集改为多字符集可以确保包含所有可能需要的字符,从而避免加载图像时出现错误或乱码问题。

2. 游戏的背景设置

游戏界面的长和宽根据背景图片的长宽(右键点击图片的属性可以查看)来设置,这里的背景图片有两张一张是游戏界面,另一张是游戏结束的图片。这里首先需要声明一个IMAGE类型的变量来存储加载的图片数据。这是后续对图片进行处理的基础,利用函数loadimage可以从本地文件中加载图片(尽量将游戏所需要的素材放在和代码的同一个目录里),最后利用putimage可以将图片绘制到窗口上来。

int main()
{Init();Itset();//设置窗口的长宽initgraph(Wide, Hight);//缓冲BeginBatchDraw();while (1){show();//刷新FlushBatchDraw();}closegraph;return 0;
}
//声明IMAGE类型的变量
IMAGE img[2];
//加载图片
loadimage(&img[0], "resource/微信图片_20240222202456.jpg");
loadimage(&img[1], "resource/微信图片_20240303132408.jpg");
//绘制图片
putimage(0, 0, &img[Img]);

3. 初始模型的信息

在这里篮球和坤坤的模型都是球,只是后面用图片覆盖而已。首先在游戏游戏界面的正上方生成多个球(具体数量自己定),然后在游戏的下方生成一个玩家控制的球,最后就是加载图片了。

初始化小球 

void Itset()
{//for (int i = 0; i < Ball_num; i++){Enemy[i].x = Wide / 2;Enemy[i].y = 10;Enemy[i].r = 10;}//玩家Player.x = Wide / 2;Player.r = 10;Player.y = Hight - Player.r * 4;
}

加载图片

因为loadimage函数只能加载图片,加载不了视频或者动图,所以我们需要将视频一帧一帧的加载上去,然后用循环绘制图片,这样就产生了一个动图的效果。

IMAGE kunkun[58];
IMAGE ball[Ball_num];loadimage(&kunkun[0], "resource/2月22日.png", 34, 34);loadimage(&kunkun[1], "resource/2月22日(1).png", 34, 34);loadimage(&kunkun[2], "resource/2月22日(2).png", 34, 34);loadimage(&kunkun[3], "resource/2月22日(3).png", 34, 34);loadimage(&kunkun[4], "resource/2月22日(4).png", 34, 34);loadimage(&kunkun[5], "resource/2月22日(5).png", 34, 34);loadimage(&kunkun[6], "resource/2月22日(6).png", 34, 34);loadimage(&kunkun[7], "resource/2月22日(7).png", 34, 34);loadimage(&kunkun[8], "resource/2月22日(8).png", 34, 34);loadimage(&kunkun[9], "resource/2月22日(9).png", 34, 34);loadimage(&kunkun[10], "resource/2月22日(10).png", 34, 34);loadimage(&kunkun[11], "resource/2月22日(11).png", 34, 34);loadimage(&kunkun[12], "resource/2月22日(12).png", 34, 34);loadimage(&kunkun[13], "resource/2月22日(13).png", 34, 34);loadimage(&kunkun[14], "resource/2月22日(14).png", 34, 34);loadimage(&kunkun[15], "resource/2月22日(15).png", 34, 34);loadimage(&kunkun[16], "resource/2月22日(16).png", 34, 34);loadimage(&kunkun[17], "resource/2月22日(17).png", 34, 34);loadimage(&kunkun[18], "resource/2月22日(18).png", 34, 34);loadimage(&kunkun[19], "resource/2月22日(19).png", 34, 34);loadimage(&kunkun[20], "resource/2月22日(20).png", 34, 34);loadimage(&kunkun[21], "resource/2月22日(21).png", 34, 34);loadimage(&kunkun[22], "resource/2月22日(22).png", 34, 34);loadimage(&kunkun[23], "resource/2月22日(23).png", 34, 34);loadimage(&kunkun[24], "resource/2月22日(24).png", 34, 34);loadimage(&kunkun[25], "resource/2月22日(25).png", 34, 34);loadimage(&kunkun[26], "resource/2月22日(26).png", 34, 34);loadimage(&kunkun[27], "resource/2月22日(27).png", 34, 34);loadimage(&kunkun[28], "resource/2月22日(28).png", 34, 34);loadimage(&kunkun[29], "resource/2月22日(29).png", 34, 34);loadimage(&kunkun[30], "resource/2月22日(30).png", 34, 34);loadimage(&kunkun[31], "resource/2月22日(31).png", 34, 34);loadimage(&kunkun[32], "resource/2月22日(32).png", 34, 34);loadimage(&kunkun[33], "resource/2月22日(33).png", 34, 34);loadimage(&kunkun[34], "resource/2月22日(34).png", 34, 34);loadimage(&kunkun[35], "resource/2月22日(35).png", 34, 34);loadimage(&kunkun[36], "resource/2月22日(36).png", 34, 34);loadimage(&kunkun[37], "resource/2月22日(37).png", 34, 34);loadimage(&kunkun[38], "resource/2月22日(38).png", 34, 34);loadimage(&kunkun[39], "resource/2月22日(39).png", 34, 34);loadimage(&kunkun[40], "resource/2月22日(40).png", 34, 34);loadimage(&kunkun[41], "resource/2月22日(41).png", 34, 34);loadimage(&kunkun[42], "resource/2月22日(42).png", 34, 34);loadimage(&kunkun[43], "resource/2月22日(43).png", 34, 34);loadimage(&kunkun[44], "resource/2月22日(44).png", 34, 34);loadimage(&kunkun[45], "resource/2月22日(45).png", 34, 34);loadimage(&kunkun[46], "resource/2月22日(46).png", 34, 34);loadimage(&kunkun[47], "resource/2月22日(47).png", 34, 34);loadimage(&kunkun[48], "resource/2月22日(48).png", 34, 34);loadimage(&kunkun[49], "resource/2月22日(49).png", 34, 34);loadimage(&kunkun[50], "resource/2月22日(50).png", 34, 34);loadimage(&kunkun[51], "resource/2月22日(51).png", 34, 34);loadimage(&kunkun[52], "resource/2月22日(52).png", 34, 34);loadimage(&kunkun[53], "resource/2月22日(53).png", 34, 34);loadimage(&kunkun[54], "resource/2月22日(54).png", 34, 34);loadimage(&kunkun[55], "resource/2月22日(55).png", 34, 34);loadimage(&kunkun[56], "resource/2月22日(56).png", 34, 34);for (int i = 0; i < Ball_num; i++){loadimage(&ball[i], "resource/5459.png_860.png", 36, 36);}

4. 绘制图片

图片是需要根据球来移动的,所以putimage函数的格式应该为:

putimage(x, y, Wide, Hight, &kunkun[a], 0, 0,SRCAND);
  1. x, y:图像左上角在窗口中的坐标。
  2. Wide, Hight:要绘制的图像的宽度和高度。
  3. &kunkun[a]:指向图像数据数组的指针,a是数组中图像数据的索引。
  4. 0, 0:源图像中要复制的区域的左上角坐标。

这样图片的位置就可以根据球的为止移动了。 

void show()
{srand((unsigned)time(NULL));//清屏函数cleardevice();//setbkcolor(WHITE);putimage(0, 0, &img[Img]);putimage(0, 0, &Heal[Health], SRCAND);for (int i = 0; i < Ball_num; i++){setfillcolor(RGB(229, 124, 77));solidcircle(Enemy[i].x, Enemy[i].y, Enemy[i].r);}putimage(Player.x - 14, Player.y - 14, Wide, Hight, &kunkun[a], 0, 0,SRCAND);for (int i = 0; i < Ball_num; i++){putimage(Enemy[i].x - 18, Enemy[i].y - 18, Wide, Hight, &ball[i], 0, 0, SRCAND);}
}

 5. 篮球的移动

随机生成8个随机数,然后根据这八个随机数在执行向下移动的同时执行向左或向右的指令。为了防止篮球的移动速度太快,我们需要加一个Sleep(10)函数给它降速。当篮球移动出游戏界面的时候我们让它重新生成。

void Enemy_move()
{srand((unsigned)time(NULL));for (int i = 0; i < Ball_num; i++){int direction = rand() % 8;if (direction == 0){Enemy[i].y++;Enemy[i].x--;}else if (direction == 1){Enemy[i].y++;Enemy[i].x++;}else if (direction == 2){Enemy[i].y += 2;Enemy[i].x += 2;}else if (direction == 3){Enemy[i].y += 2;Enemy[i].x -= 2;}else if (direction == 4){Enemy[i].y += 3;Enemy[i].x += 3;}else if (direction == 5){Enemy[i].y += 3;Enemy[i].x -= 3;}else if (direction == 6){Enemy[i].y += 4;Enemy[i].x -= 4;}else if (direction == 7){Enemy[i].y += 4;Enemy[i].x += 4;}if (Enemy[i].x <0 || Enemy[i].x>Wide || Enemy[i].y > Hight - Player.r * 3){Enemy[i].x = Wide / 2;Enemy[i].y = 10;Enemy[i].r = 10;}}
}

6. 玩家与球碰撞

生成游戏血条,每碰撞一次血条减少,并且重新生成篮球。

IMAGE Heal[6];loadimage(&Heal[5], "resource/微信图片_20240303142935.jpg");loadimage(&Heal[4], "resource/微信图片_20240303142958.jpg");loadimage(&Heal[3], "resource/微信图片_20240303142931.jpg");loadimage(&Heal[2], "resource/微信图片_20240303142926.jpg");loadimage(&Heal[1], "resource/微信图片_20240303142922.jpg");
//玩家与球碰撞
void collide()
{for (int i = 0; i < Ball_num; i++){if (Distance(Player.x, Player.y, Enemy[i].x, Enemy[i].y) < Player.r + Enemy[i].r && Health > 0){Health--;Enemy[i].x = Wide / 2;Enemy[i].y = 10;Enemy[i].r = 10;}}}

7. 人物的移动 

在这里需要用到GetAsyncKeyState(vk virtual key)函数获取异步按键状态,其中vk virtual key是虚拟键值,如果接受到这个虚拟键值,它会返回真。VK_UP、VK_LEFT、VK_RIGHT、0x20、0x41、0x44、0x57分别是上箭头键、左箭头键、右箭头键、空格键、a、d、w的虚拟键值。最后这里比较难处理的就是跳跃的这个动作了,我在这里设置人物跳跃后最高上升60个像素格,然后通过while循环循环上升每次上升5个像素个,如果是直接上升60个像素格的话,就是闪现了达不到跳跃的效果,在人物上升的同时其他动作是任然要进行的,所以我们还需要将这些动作函数打包放到这个人物跳跃的while循环当中。值得注意的是我们还需要在这个while循环中加一个Sleep(20)调节循环速度,使这里运动速度与主函数的while循环的运动速度一致。

void player_move()
{if (GetAsyncKeyState(VK_LEFT)|| GetAsyncKeyState(0x41)){if (Player.x > 0)Player.x -= Player_sleep;}if (GetAsyncKeyState(VK_RIGHT)|| GetAsyncKeyState(0x44)){if (Player.x < Wide)Player.x += Player_sleep;}if (Player.y == Hight - Player.r * 4){if (GetAsyncKeyState(0x20) || GetAsyncKeyState(0x57)|| GetAsyncKeyState(VK_UP)){BeginBatchDraw();while (Player.y > Hight - Player.r * 4 - 60){Sleep(20);Player.y -= 5;player_move();Enemy_move();show();collide();FlushBatchDraw();}}if (Health == 0){printf("\a");system("pause");exit(0);}}
}

效果展示:

坤坤的篮球回避秀

源码:

#include<stdio.h>
#include<easyx.h>
#include<time.h>
#include<windows.h>
#include<mmsystem.h>
#include<math.h>
#pragma comment(lib,"winmm.lib")
#define Wide 1280
#define Hight 720
#define Wide1 780
#define Hight1 286
#define Ball_num 20
#define Player_sleep 5
int Health = 5;
int sleep = 1;
int Img = 0;
struct Ball
{float x = 0;int y = 0;float r = 0;};
struct Ball Enemy[Ball_num];
struct Ball Player;
IMAGE img[2];
IMAGE kunkun[58];
IMAGE ball[Ball_num];
IMAGE Heal[6];
int a = 0;
//加载图片
void Init()
{loadimage(&img[0], "resource/微信图片_20240222202456.jpg");loadimage(&img[1], "resource/微信图片_20240303132408.jpg");loadimage(&Heal[5], "resource/微信图片_20240303142935.jpg");loadimage(&Heal[4], "resource/微信图片_20240303142958.jpg");loadimage(&Heal[3], "resource/微信图片_20240303142931.jpg");loadimage(&Heal[2], "resource/微信图片_20240303142926.jpg");loadimage(&Heal[1], "resource/微信图片_20240303142922.jpg");loadimage(&kunkun[0], "resource/2月22日.png", 34, 34);loadimage(&kunkun[1], "resource/2月22日(1).png", 34, 34);loadimage(&kunkun[2], "resource/2月22日(2).png", 34, 34);loadimage(&kunkun[3], "resource/2月22日(3).png", 34, 34);loadimage(&kunkun[4], "resource/2月22日(4).png", 34, 34);loadimage(&kunkun[5], "resource/2月22日(5).png", 34, 34);loadimage(&kunkun[6], "resource/2月22日(6).png", 34, 34);loadimage(&kunkun[7], "resource/2月22日(7).png", 34, 34);loadimage(&kunkun[8], "resource/2月22日(8).png", 34, 34);loadimage(&kunkun[9], "resource/2月22日(9).png", 34, 34);loadimage(&kunkun[10], "resource/2月22日(10).png", 34, 34);loadimage(&kunkun[11], "resource/2月22日(11).png", 34, 34);loadimage(&kunkun[12], "resource/2月22日(12).png", 34, 34);loadimage(&kunkun[13], "resource/2月22日(13).png", 34, 34);loadimage(&kunkun[14], "resource/2月22日(14).png", 34, 34);loadimage(&kunkun[15], "resource/2月22日(15).png", 34, 34);loadimage(&kunkun[16], "resource/2月22日(16).png", 34, 34);loadimage(&kunkun[17], "resource/2月22日(17).png", 34, 34);loadimage(&kunkun[18], "resource/2月22日(18).png", 34, 34);loadimage(&kunkun[19], "resource/2月22日(19).png", 34, 34);loadimage(&kunkun[20], "resource/2月22日(20).png", 34, 34);loadimage(&kunkun[21], "resource/2月22日(21).png", 34, 34);loadimage(&kunkun[22], "resource/2月22日(22).png", 34, 34);loadimage(&kunkun[23], "resource/2月22日(23).png", 34, 34);loadimage(&kunkun[24], "resource/2月22日(24).png", 34, 34);loadimage(&kunkun[25], "resource/2月22日(25).png", 34, 34);loadimage(&kunkun[26], "resource/2月22日(26).png", 34, 34);loadimage(&kunkun[27], "resource/2月22日(27).png", 34, 34);loadimage(&kunkun[28], "resource/2月22日(28).png", 34, 34);loadimage(&kunkun[29], "resource/2月22日(29).png", 34, 34);loadimage(&kunkun[30], "resource/2月22日(30).png", 34, 34);loadimage(&kunkun[31], "resource/2月22日(31).png", 34, 34);loadimage(&kunkun[32], "resource/2月22日(32).png", 34, 34);loadimage(&kunkun[33], "resource/2月22日(33).png", 34, 34);loadimage(&kunkun[34], "resource/2月22日(34).png", 34, 34);loadimage(&kunkun[35], "resource/2月22日(35).png", 34, 34);loadimage(&kunkun[36], "resource/2月22日(36).png", 34, 34);loadimage(&kunkun[37], "resource/2月22日(37).png", 34, 34);loadimage(&kunkun[38], "resource/2月22日(38).png", 34, 34);loadimage(&kunkun[39], "resource/2月22日(39).png", 34, 34);loadimage(&kunkun[40], "resource/2月22日(40).png", 34, 34);loadimage(&kunkun[41], "resource/2月22日(41).png", 34, 34);loadimage(&kunkun[42], "resource/2月22日(42).png", 34, 34);loadimage(&kunkun[43], "resource/2月22日(43).png", 34, 34);loadimage(&kunkun[44], "resource/2月22日(44).png", 34, 34);loadimage(&kunkun[45], "resource/2月22日(45).png", 34, 34);loadimage(&kunkun[46], "resource/2月22日(46).png", 34, 34);loadimage(&kunkun[47], "resource/2月22日(47).png", 34, 34);loadimage(&kunkun[48], "resource/2月22日(48).png", 34, 34);loadimage(&kunkun[49], "resource/2月22日(49).png", 34, 34);loadimage(&kunkun[50], "resource/2月22日(50).png", 34, 34);loadimage(&kunkun[51], "resource/2月22日(51).png", 34, 34);loadimage(&kunkun[52], "resource/2月22日(52).png", 34, 34);loadimage(&kunkun[53], "resource/2月22日(53).png", 34, 34);loadimage(&kunkun[54], "resource/2月22日(54).png", 34, 34);loadimage(&kunkun[55], "resource/2月22日(55).png", 34, 34);loadimage(&kunkun[56], "resource/2月22日(56).png", 34, 34);for (int i = 0; i < Ball_num; i++){loadimage(&ball[i], "resource/5459.png_860.png", 36, 36);}
}
//初始化小球的信息
void Itset()
{//for (int i = 0; i < Ball_num; i++){Enemy[i].x = Wide / 2;Enemy[i].y = 10;Enemy[i].r = 10;}//玩家Player.x = Wide / 2;Player.r = 10;Player.y = Hight - Player.r * 4;
}
void Enemy_move()
{srand((unsigned)time(NULL));for (int i = 0; i < Ball_num; i++){int direction = rand() % 8;if (direction == 0){Enemy[i].y++;Enemy[i].x--;}else if (direction == 1){Enemy[i].y++;Enemy[i].x++;}else if (direction == 2){Enemy[i].y += 2;Enemy[i].x += 2;}else if (direction == 3){Enemy[i].y += 2;Enemy[i].x -= 2;}else if (direction == 4){Enemy[i].y += 3;Enemy[i].x += 3;}else if (direction == 5){Enemy[i].y += 3;Enemy[i].x -= 3;}else if (direction == 6){Enemy[i].y += 4;Enemy[i].x -= 4;}else if (direction == 7){Enemy[i].y += 4;Enemy[i].x += 4;}if (Enemy[i].x <0 || Enemy[i].x>Wide || Enemy[i].y > Hight - Player.r * 3){Enemy[i].x = Wide / 2;Enemy[i].y = 10;Enemy[i].r = 10;}}
}
void show()
{srand((unsigned)time(NULL));cleardevice();putimage(0, 0, &img[Img]);putimage(0, 0, &Heal[Health], SRCAND);for (int i = 0; i < Ball_num; i++){setfillcolor(RGB(229, 124, 77));solidcircle(Enemy[i].x, Enemy[i].y, Enemy[i].r);}putimage(Player.x - 14, Player.y - 14, Wide, Hight, &kunkun[a], 0, 0,SRCAND);for (int i = 0; i < Ball_num; i++){putimage(Enemy[i].x - 18, Enemy[i].y - 18, Wide, Hight, &ball[i], 0, 0, SRCAND);}
}
//距离
int Distance(int x, int y, int x1, int y1)
{return sqrt((x - x1) * (x - x1) + (y - y1) * (y - y1));
}
//玩家与球碰撞
void collide()
{for (int i = 0; i < Ball_num; i++){if (Distance(Player.x, Player.y, Enemy[i].x, Enemy[i].y) < Player.r + Enemy[i].r && Health > 0){Health--;Enemy[i].x = Wide / 2;Enemy[i].y = 10;Enemy[i].r = 10;}}}
void player_move()
{if (GetAsyncKeyState(VK_LEFT)|| GetAsyncKeyState(0x41)){if (Player.x > 0)Player.x -= Player_sleep;}if (GetAsyncKeyState(VK_RIGHT)|| GetAsyncKeyState(0x44)){if (Player.x < Wide)Player.x += Player_sleep;}if (Player.y == Hight - Player.r * 4){if (GetAsyncKeyState(0x20) || GetAsyncKeyState(0x57)|| GetAsyncKeyState(VK_UP)){BeginBatchDraw();while (Player.y > Hight - Player.r * 4 - 60){Sleep(20);Player.y -= 5;player_move();Enemy_move();show();collide();FlushBatchDraw();}}if (Health == 0){printf("\a");system("pause");exit(0);}}
}
int main()
{Init();Itset();initgraph(Wide, Hight);BeginBatchDraw();while (1){Sleep(20);if (a <= 56){a++;}if (a > 56){a = 0;}if (Player.y < Hight - Player.r * 4){Player.y += 2;}if (sleep > 0){sleep--;}if (Health == 0)Img = 1;show();FlushBatchDraw();Enemy_move();player_move();collide();}closegraph;return 0;
}

这篇关于c语言游戏实战(10):坤坤的篮球回避秀的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/775230

相关文章

网页解析 lxml 库--实战

lxml库使用流程 lxml 是 Python 的第三方解析库,完全使用 Python 语言编写,它对 XPath表达式提供了良好的支 持,因此能够了高效地解析 HTML/XML 文档。本节讲解如何通过 lxml 库解析 HTML 文档。 pip install lxml lxm| 库提供了一个 etree 模块,该模块专门用来解析 HTML/XML 文档,下面来介绍一下 lxml 库

性能分析之MySQL索引实战案例

文章目录 一、前言二、准备三、MySQL索引优化四、MySQL 索引知识回顾五、总结 一、前言 在上一讲性能工具之 JProfiler 简单登录案例分析实战中已经发现SQL没有建立索引问题,本文将一起从代码层去分析为什么没有建立索引? 开源ERP项目地址:https://gitee.com/jishenghua/JSH_ERP 二、准备 打开IDEA找到登录请求资源路径位置

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

滚雪球学Java(87):Java事务处理:JDBC的ACID属性与实战技巧!真有两下子!

咦咦咦,各位小可爱,我是你们的好伙伴——bug菌,今天又来给大家普及Java SE啦,别躲起来啊,听我讲干货还不快点赞,赞多了我就有动力讲得更嗨啦!所以呀,养成先点赞后阅读的好习惯,别被干货淹没了哦~ 🏆本文收录于「滚雪球学Java」专栏,专业攻坚指数级提升,助你一臂之力,带你早日登顶🚀,欢迎大家关注&&收藏!持续更新中,up!up!up!! 环境说明:Windows 10

国产游戏崛起:技术革新与文化自信的双重推动

近年来,国产游戏行业发展迅猛,技术水平和作品质量均得到了显著提升。特别是以《黑神话:悟空》为代表的一系列优秀作品,成功打破了过去中国游戏市场以手游和网游为主的局限,向全球玩家展示了中国在单机游戏领域的实力与潜力。随着中国开发者在画面渲染、物理引擎、AI 技术和服务器架构等方面取得了显著进展,国产游戏正逐步赢得国际市场的认可。然而,面对全球游戏行业的激烈竞争,国产游戏技术依然面临诸多挑战,未来的

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

MiniGPT-3D, 首个高效的3D点云大语言模型,仅需一张RTX3090显卡,训练一天时间,已开源

项目主页:https://tangyuan96.github.io/minigpt_3d_project_page/ 代码:https://github.com/TangYuan96/MiniGPT-3D 论文:https://arxiv.org/pdf/2405.01413 MiniGPT-3D在多个任务上取得了SoTA,被ACM MM2024接收,只拥有47.8M的可训练参数,在一张RTX

如何确定 Go 语言中 HTTP 连接池的最佳参数?

确定 Go 语言中 HTTP 连接池的最佳参数可以通过以下几种方式: 一、分析应用场景和需求 并发请求量: 确定应用程序在特定时间段内可能同时发起的 HTTP 请求数量。如果并发请求量很高,需要设置较大的连接池参数以满足需求。例如,对于一个高并发的 Web 服务,可能同时有数百个请求在处理,此时需要较大的连接池大小。可以通过压力测试工具模拟高并发场景,观察系统在不同并发请求下的性能表现,从而