文档库 最新最全的文档下载
当前位置:文档库 › 钟表

钟表

新闻 下载 技术文章 范例程序 首页
新闻
下载
技术文章
范例程序
在线帮助
社区讨论
钟表模拟程序(表针形式)
作者:BestAns
这是个简单的表针式时钟模拟程序。运行效果如下:



在源代码的基础上,可以通过 API 函数 mciSendString 轻松加上滴答声音。

代码如下:

////////////////////////////////////////////
// 程序名称:钟表模拟程序(表针形式)
// 编译环境:Visual C++ 6.0,EasyX 2011惊蛰版
// 程序编写:BestAns
// 最后更新:2010-10-30
//
#include
#include
#include

#define PI 3.1415926536

void DrawHand(int hour, int minute, int second)
{
double a_hour, a_min, a_sec; // 时、分、秒针的弧度值
int x_hour, y_hour, x_min, y_min, x_sec, y_sec; // 时、分、秒针的末端位置

// 计算时、分、秒针的弧度值
a_sec = second * 2 * PI / 60;
a_min = minute * 2 * PI / 60 + a_sec / 60;
a_hour= hour * 2 * PI / 12 + a_min / 12;

// 计算时、分、秒针的末端位置
x_sec = int(120 * sin(a_sec)); y_sec = int(120 * cos(a_sec));
x_min = int(100 * sin(a_min)); y_min = int(100 * cos(a_min));
x_hour= int(70 * sin(a_hour)); y_hour= int(70 * cos(a_hour));

// 画时针
setlinestyle(PS_SOLID, NULL, 10);
setcolor(WHITE);
line(320 + x_hour, 240 - y_hour, 320 - x_hour / 7, 240 + y_hour / 7);

// 画分针
setlinestyle(PS_SOLID, NULL, 6);
setcolor(LIGHTGRAY);
line(320 + x_min, 240 - y_min, 320 - x_min / 5, 240 + y_min / 5);

// 画秒针
setlinestyle(PS_SOLID, NULL, 2);
setcolor(RED);
line(320 + x_sec, 240 - y_sec, 320 - x_sec / 3, 240 + y_sec / 3);
}

void DrawDial()
{
// 绘制一个简单的表盘
circle(320, 240, 2);
circle(320, 240, 60);
circle(320, 240, 160);
outtextxy(296, 310, "BestAns");

// 绘制刻度
int x, y;
for (int i=0; i<60; i++)
{
x = 320 + int(145 * sin(PI * 2 * i / 60));
y = 240 + int(145 * cos(PI * 2 * i / 60));

if (i % 15 == 0)
bar(x - 5, y - 5, x + 5, y + 5);
else if (i % 5 == 0)
circle(x, y, 3);
else
putpixel(x, y, WHITE);
}
}

void main()
{
initgraph(640, 480); // 初始化 640 x 480 的绘图窗口

DrawDial(); // 绘制表盘

setwritemode(R2_XORPEN); // 设置 XOR 绘图模式

// 绘制表针
SYSTEMTIME ti; // 定义变量保存当前时间
while(!kbhit()) // 按任意键退出钟表程序
{
GetLocalTime(&ti); // 获取当前时间
DrawHand(ti.wHour, ti.wMinute, ti.wSecond); // 画表针
Sleep(1000); // 延时 1 秒
DrawHand(ti.wHour, ti.wMinute, ti.wSecond); // 擦表针(擦表针和画表针的过程是一样的)
}

closegraph(); // 关闭绘图窗口
}浏览次数:1400 更新时间:2010-10-30栏目导航
绘图程序范例
游戏程序范例
图形学程序范例
分形学程序范例
相关文章 推荐阅读
模仿 Windows

屏保“变幻线 (My
钟表模拟程序(表针形式)
鼠标操作演示
星空
意见反馈 | 投稿 | 联系我们 | 版权声明EasyX Library for C++ Copyright 2009-2011
京ICP备10023460号-2

相关文档