额外减小 发表于 2023-9-29 14:38:00

做了个简易抽号器(Windows)

本帖最后由 额外减小 于 2023-10-1 21:44 编辑

rt.

求评分啊啊啊我想申精啊
如有评分,我会尽量帮你回本(育碧,荣誉)

Update. 各位下载后最好自己重新编译一次,因为各种电脑的编译环境可能不太一样。
另外,大家可以把位置参数稍微改成适合自己电脑的参数,因为各个电脑分辨率可能不同。


C++写的,众所周知用 windows.h 写代码是相对来说较为复杂的。

因为在班级中,经常需要选出一些人干活 / 做电子小报 / 做一些特殊任务,所以这个抽号器的运用是相当广泛的。
大家可以把这个抽号器拷贝到班级的电脑上(bushi)

因为该程序用到了图片资源,所以大家可以下载下面的集成资源包。

已撒币,想申精,求评分

效果展示:


源代码:
/*   
*      感谢您的使用。
*      
*    __Jianbing_Juan__
*
*   我是蒟蒻,不喜勿喷
*/


#include <windows.h>
#include <gdiplus.h> //graphics
#include <cstdio> //sprintf
#include <cstdlib> //atoi , itoa
#include <random> //random_shuffle
#include <algorithm> //random_shuffle
#include <ctime> //srand
#include <cstring> //string operations
using namespace std;
using namespace Gdiplus;

int nums;
const LPARAM linebreak=(LPARAM)'\n';

const int total_num=54;

LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);

int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,PSTR szCmdLine,int iCmdShow)
{
       
        static TCHAR szAppName[]=TEXT("MyWindowClass");
        HWND hwnd;
        MSG msg;
        WNDCLASS wndclass;
       
        wndclass.style = CS_HREDRAW | CS_VREDRAW;
        wndclass.lpfnWndProc = WndProc;
        wndclass.cbClsExtra = 0;
        wndclass.cbWndExtra = 0;
        wndclass.hInstance = hInstance;
        wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
        wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
        wndclass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
        wndclass.lpszMenuName = NULL;
        wndclass.lpszClassName = szAppName;
       
        if(!RegisterClass(&wndclass))
        return 0;
       
        hwnd=CreateWindow(szAppName,TEXT("抽号器"),WS_OVERLAPPEDWINDOW,CW_USEDEFAULT,CW_USEDEFAULT,350,400,NULL,NULL,hInstance,NULL);
       
        GdiplusStartupInput gdiplusStartupInput;
        ULONG_PTR gdiplusToken;
        GdiplusStartup(&gdiplusToken,&gdiplusStartupInput,nullptr);
       
        ShowWindow(hwnd,iCmdShow);
        UpdateWindow(hwnd);
       
       
       
        for(int i=0;i<total_num;i++)
        {
                nums=i+1;
        }
       
        while(GetMessage(&msg,NULL,0,0))
        {
                SetFocus(hwnd);
                TranslateMessage(&msg);
                DispatchMessage(&msg);
        }
       
        GdiplusShutdown(gdiplusToken);
       
        return msg.wParam;
}

HWND hInputBox,hOutputBox;
char num;


LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
        switch(message)
        {
                case WM_PAINT:
                {
                        PAINTSTRUCT ps;
                        HDC hdc=BeginPaint(hwnd,&ps);
                        Graphics graphics(hdc);
                        Image image(L"unforgettable.png");
                        graphics.DrawImage(&image,200,80);
                        RECT rect={160,10,330,35};
                        DrawText(hdc,TEXT("输入需要抽取的人数"),-1,&rect,DT_SINGLELINE|DT_CENTER|DT_VCENTER);
                       
                        EndPaint(hwnd,&ps);
                        break;
                }
                       
                case WM_CREATE:
                {
                        hInputBox=CreateWindow(TEXT("EDIT"),TEXT(""),WS_CHILD|WS_VISIBLE|WS_BORDER|ES_AUTOHSCROLL|ES_READONLY,10,10,150,24,hwnd,NULL,NULL,NULL);
                        hOutputBox=CreateWindow(TEXT("EDIT"),TEXT(""),WS_CHILD|WS_VISIBLE|WS_BORDER|WS_VSCROLL|ES_AUTOVSCROLL|ES_MULTILINE|ES_READONLY,10,50,150,300,hwnd,NULL,NULL,NULL);
                       
                        break;
                }
               
                case WM_KEYDOWN:
                {
                       
                        if(wParam==VK_RETURN)
                        {
                                SendMessage(hOutputBox,WM_SETTEXT,0,(LPARAM)"");
                                GetWindowText(hInputBox,num,5);
                               
                                int iNum=atoi(num);
                                if(iNum>54 or iNum==0)
                                {
                                        MessageBox(hwnd,"非法输入","提示",MB_OK|MB_ICONERROR);
                                }
                                else
                                {
                                        srand(time(nullptr));
                                        random_shuffle(nums,nums+total_num);
                                        char out_str;
                                        for(int i=0;i<iNum;i++)
                                        {
                                                itoa(nums,out_str,10);
                                                int l=strlen(out_str);
                                                SendMessage(hOutputBox,EM_REPLACESEL,true,(LPARAM)out_str);
                                                SendMessage(hOutputBox,EM_REPLACESEL,true,(LPARAM)"\r\n");
                                        }
                                }
                               
                                SendMessage(hInputBox,WM_SETTEXT,0,(LPARAM)"");
                               
                        }
                        else if(wParam==VK_BACK)
                        {
                               
                                int nStart,nEnd;
                                SendMessage(hInputBox,EM_GETSEL,(WPARAM)&nStart,(LPARAM)&nEnd);
                                nStart--;
                                nEnd=nStart+1;
                                SendMessage(hInputBox,EM_SETSEL,nStart,nEnd);
                                SendMessage(hInputBox,EM_REPLACESEL,true,(LPARAM)"");
                        }
                        else if(wParam>='0' and wParam<='9')
                        {
                                SendMessage(hInputBox,EM_REPLACESEL,true,(LPARAM)&wParam);
                        }
                        else if(wParam>=96 and wParam<=105)
                        {
                                WPARAM wTmp=wParam;
                                wTmp-=48;
                                SendMessage(hInputBox,EM_REPLACESEL,true,(LPARAM)&wTmp);
                        }
                        break;
                }
                case WM_DESTROY:
                {
                        PostQuitMessage(0);
                        return 0;
                }
        }
       
        return DefWindowProc(hwnd,message,wParam,lParam);
}

集成资源包:



额外减小 发表于 2023-9-29 14:42:20

本帖最后由 额外减小 于 2023-9-29 15:28 编辑

大家可以提出改进建议,有丰厚的奖励。
尽量不要无意义回复,我要破产了。
也不是说不能回复,qpzc还是可以的,(但是你要作出实际行动(bushi))

Mike_python小 发表于 2023-9-29 15:39:16

qpzc啥意思啊
还有qp
cu ball

Ewan-Ahiouy 发表于 2023-9-29 15:49:13

Mike_python小 发表于 2023-9-29 15:39
qpzc啥意思啊
还有qp
cu ball

qpzc = 前排支持
qp = 前排
cuball不知道{:5_109:}

sfqxx 发表于 2023-9-29 15:49:19

Mike_python小 发表于 2023-9-29 15:39
qpzc啥意思啊
还有qp
cu ball

qpzc=前排支持

qp略
cu ball不知道

Ewan-Ahiouy 发表于 2023-9-29 15:49:44

前来支持!这玩意好玩{:10_256:}

sfqxx 发表于 2023-9-29 15:49:50

cu ball

Mike_python小 发表于 2023-9-29 15:54:39

Ewan-Ahiouy 发表于 2023-9-29 12:49
qpzc = 前排支持
qp = 前排
cuball不知道

cu ball
为什么是不知道的一丝

Ewan-Ahiouy 发表于 2023-9-29 15:56:22

Mike_python小 发表于 2023-9-29 15:54
cu ball
为什么是不知道的一丝

emmm是我不知道。

不过现在我知道了{:10_256:}

https://www.luogu.com.cn/blog/FCBM71/luogu-dictionary

Jtrump156 发表于 2023-9-29 16:28:00

{:7_146:}

liuhongrun2022 发表于 2023-9-29 18:17:59

Mike_python小 发表于 2023-9-29 15:39
qpzc啥意思啊
还有qp
cu ball

qpzc=前排支持
qp=前排
具体看 https://www.luogu.com.cn/blog/WARNING/luo-gu-ding-lv-ming-ci

琅琊王朝 发表于 2023-9-29 20:03:52

{:5_106:}

Wei-Yuanzhe 发表于 2023-9-29 20:18:11

qpzc{:10_256:}

陶远航 发表于 2023-9-29 22:09:55

qpzc{:10_256:}

陶远航 发表于 2023-9-29 22:10:45

回本

kerln888 发表于 2023-9-30 09:03:36

qpzc

奋斗中的鱼 发表于 2023-9-30 10:29:40

ok啊,完美地看不懂了{:10_266:}

额外减小 发表于 2023-9-30 13:53:18

奋斗中的鱼 发表于 2023-9-30 10:29
ok啊,完美地看不懂了

今天评分额度没了,明天给你回本

歌者文明清理员 发表于 2023-9-30 20:13:45

已评

rainfox雨狐 发表于 2023-10-1 19:40:15

支持
页: [1] 2
查看完整版本: 做了个简易抽号器(Windows)