C語言百行代碼繪制聖誕水晶球

我愛你,不是因為你是一個怎樣的人,而是因為我喜歡與你在一起時的感覺。

嗨!這裡是狐貍~~

今天就是聖誕節瞭,再過一個星期就是2022年瞭,最近總是感覺傷感,有些事情就是比想象中來的快一些,希望大傢都可以把握2021年最後的時間,不留遺憾吧,後天聖誕節,今天再教大傢一個聖誕項目吧,聖誕水晶球,今天這個呢代碼不多,但難度會有點,因為這個涉及桌面,就是可以在桌面實現,希望大傢可以認真看,認真學吧。

同樣,先給大傢看效果吧

效果還是很不錯的,再加上一個音樂,女朋友看完就馬上同意你瞭,嘿嘿,這裡就不再是簡單的窗口瞭,難度有一些,但也不大,畢竟代碼也不多,好瞭,認真學,認真的嘗試哦!

項目代碼

這是我第一次隻用一個代碼段,因為代碼確實不多,我覺得分段就沒必要瞭,而且其中必要的地方,我也加瞭詳細的註釋,應該還好,難就難在之前沒有用Windows庫,這次用瞭,效果看起來就會舒服很多,怎麼樣,學會瞭趕快拿給心中的那個人看吧!

#include <stdio.h>
#include <windows.h>
#include <graphics.h>
#include <commctrl.h>
#include <mmsystem.h>
#pragma comment(lib,"winmm.lib")
 
int main()
{
	keybd_event(VK_LWIN, 0, 0, 0);
	keybd_event('D', 0, 0, 0);
	keybd_event('D', 0, 2, 0);
	keybd_event(VK_LWIN, 0, 2, 0);
	
	Sleep(3000);
	int CX = GetSystemMetrics(SM_CXSCREEN);
	int CY = GetSystemMetrics(SM_CYSCREEN);
 
	HWND hwnd = initgraph(500,500); //創建一個窗口hwnd
	HRGN Ellip = CreateEllipticRgn(10, 32, 100+10, 100+32);//設置一個邏輯的圖形rect
	SetWindowRgn(hwnd, Ellip, true);  //設置窗口的區域
	SetForegroundWindow(hwnd);
	MoveWindow(hwnd, CX / 2 - 120, CY / 2, 500, 500, true);
 
	mciSendString("open res/music.mp3", 0, 0, 0);    //打開
	mciSendString("play res/music.mp3 repeat", 0, 0, 0);    //播放
	bool isplay = true;  //音樂是否正在播放
 
	int sence = 3;  //場景
	int frame = 0;  //幀數
	IMAGE img[30];
	int maxframe[] = { 20, 7, 4, 15, 10}; //每一種場景的圖片的張數
	char picpath[30] = { 0 };  //字符串 圖片的路徑
	for (int i = 0; i < maxframe[sence]; i++)
	{
		sprintf(picpath, "res/%02d-%02d.bmp", sence, i);
		loadimage(&img[i], picpath, 100, 100);
	}
 
	/*---------------------------------------------------------*/
	//獲取到桌面圖標的窗口
	HWND zmWnd = FindWindow("Progman","Program Manager");  //桌面窗口
	HWND bzWnd = FindWindowEx(zmWnd, 0, "SHELLDLL_DefView", NULL);  //壁紙窗口
	HWND tbWnd = FindWindowEx(bzWnd, 0, "SysListView32", "FolderView");  //圖標窗口
 
	HWND workHwnd = NULL;
	while (tbWnd == NULL)//必須存在桌面窗口層次
	{
		workHwnd = FindWindowExA(0, workHwnd, "WorkerW", NULL);//獲得WorkerW類的窗口
		if (workHwnd == NULL)
			break;//未知錯誤
		bzWnd = FindWindowExA(workHwnd, NULL, "SHELLDLL_DefView", NULL);
		if (bzWnd == NULL)
			continue;
		tbWnd = FindWindowExA(bzWnd, NULL, "SysListView32", NULL);
	}
 
	DWORD dwStyle = (DWORD)GetWindowLong(tbWnd, GWL_STYLE);
	if (dwStyle & LVS_AUTOARRANGE)
		SetWindowLong(tbWnd, GWL_STYLE, dwStyle & ~LVS_AUTOARRANGE);
 
	DWORD dwExStyle = (DWORD)ListView_GetExtendedListViewStyle(tbWnd, GWL_EXSTYLE);
	if (dwExStyle & LVS_EX_SNAPTOGRID)
		ListView_SetExtendedListViewStyle(tbWnd, dwExStyle & ~LVS_EX_SNAPTOGRID);
 
 
	//指揮它 威脅它 圖標的窗口
	int count = SendMessage(tbWnd, LVM_GETITEMCOUNT, 0, 0);
	for (int i = 0; i < count; i++)
		SendMessage(tbWnd, LVM_SETITEMPOSITION, i, (3000 << 16) + 100);
	POINT dir[14] = { { 868 * CX / 1920, 316 * CY / 1080 }, { 730 * CX / 1920, 207 * CY / 1080 }, 
	{ 591 * CX / 1920, 221 * CY / 1080 }, { 515 * CX / 1920, 327 * CY / 1080 }, { 542 * CX / 1920, 469 * CY / 1080 },
	{ 610 * CX / 1920, 624 * CY / 1080 }, { 723 * CX / 1920, 746 * CY / 1080 }, { 870 * CX / 1920, 814 * CY / 1080 }, 
	{ 1012 * CX / 1920, 744 * CY / 1080 }, { 1130 * CX / 1920, 626 * CY / 1080 },
	{ 1219 * CX / 1920, 485 * CY / 1080 }, { 1225 * CX / 1920, 328 * CY / 1080 }, { 1156 * CX / 1920, 225 * CY / 1080 },
	{ 1012 * CX / 1920, 217 * CY / 1080 } };
 
	ExMessage m;                         //定義消息
	int oldsence;
	while (1){
 
		if (peekmessage(&m, EM_MOUSE))   //如果獲取到一條鼠標消息
		{
			switch (m.message)
			{
			case WM_LBUTTONDOWN:  //點下左鍵  換一個場景
				oldsence = sence;
				do
				{
					sence = rand() % (sizeof(maxframe) / sizeof(maxframe[0])); //0-5
				} while (sence == oldsence);
 
				for (int i = 0; i < maxframe[sence]; i++)
				{
					sprintf(picpath, "res/%02d-%02d.bmp", sence, i);
					loadimage(&img[i], picpath, 100, 100);
				}
				SendMessage(hwnd, WM_SYSCOMMAND, 0xf012, 0);
			
				break;
			case WM_RBUTTONDOWN: 
				if (isplay)  //正在播放
					mciSendString("pause res/music.mp3", 0, 0, 0);  
				else
					mciSendString("play res/music.mp3 repeat", 0, 0, 0);
				
				isplay = !isplay; //取反
				break;
			}
		}
		else  //繪制界面
		{
			putimage(0, 0, &img[frame++]);
			if (frame > maxframe[sence] - 1)frame = 0;
 
			for (int i = 0; i < 14; i++)
			{
				SendMessage(tbWnd, LVM_SETITEMPOSITION, i, (dir[i].y << 16) + dir[i].x);
			}
 
			int x = dir[0].x;
			int y = dir[0].y;
			for (int i = 0; i < 13; i++)
			{
				dir[i].x = dir[i + 1].x;
				dir[i].y = dir[i + 1].y;
			}
			dir[13].x = x;
			dir[13].y = y;
		}
	}
	return 0;
}
 

總結

代碼真的非常的少,認真理解每一行的作用,相信你們很快就可以理解瞭。聖誕節快到瞭,程序員的快樂無非就是可以代碼寫出一些特別的東西瞭,主要是確實好用,哈哈哈,不管男女,好啦,希望大傢可以在聖誕節的那天都會有好運氣,提前祝大傢聖誕節快樂啦!

視頻講解

這次也有視頻講解,代碼不多,看視頻會理解的更快! 

到此這篇關於C語言百行代碼繪制聖誕水晶球的文章就介紹到這瞭,更多相關C語言繪制聖誕水晶球內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: