我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C++控制台绘图头文件实例代码

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C++控制台绘图头文件实例代码

简介

这个头文件是用来在C++控制台绘图的,借鉴了 pygame 的一些思想,提供了一些函数用来绘图,可以有效的避免多次绘制重复图像时屏闪等问题。

函数介绍

1、init(int x, int fz)

初始化屏幕, 将屏幕大小设定为 x , 字体大小为 fz 。

2、fill(concol color)

用来将整个屏幕填充为一定的颜色。

3、update()

注意!绘画完后的图像并不会立刻出现在控制台上,使用这个函数来更新。

4、getmousepos(pos & p)

获取鼠标坐标并存到 p 中

5、gt(int x, int y)

将控制台光标移到(x,y)的位置,x,y 从1开始

6、HideCursor()

隐藏控制台光标

7、settextcolor(concol color)

设置文字颜色

8、setbackcolor(concol color)

设置背景颜色

9、rect(int sx, int sy, int ex, int ey, concol color)

以(sx, sy)为左上端点、(ex, ey)为右下端点,绘制颜色为color的矩形。

10、line(int sx, int sy, int ex, int ey, concol color)

绘制一条从(sx, sy)到(ex, ey)的线。

11、dot(int x, int y, concol color)

在(x,y)的位置画一个点

先介绍到这里

里面更多的功能、函数会在以后的文章后详细解释。

示例代码

我这里将头文件命名为 Drawer.h ,如果用了别的名字保存头文件,这里也要改过来。

功能是从(1,1)到鼠标的位置画线。

#include "Drawer.h"
using namespace std;
 
Pos mp; // Mouse_Pos
 
void game()
{
	while(1)
	{
		getmousepos(mp); // Get Mouse Pos
		fill(black); // Let Screen be black
		line(1, 1, mp.x, mp.y, green); // from (1, 1) to (mp.x, mp.y) draw Line
		//                        ^
		//                        |
		// You can change this to red, blue, white or more
		update(); // Update Screen
	}
}
 
int main(){
    system("mode con cols=102 lines=52");
    init(50, 16);// 50x50 Screen and font size is 16
	game();
}

示例图片

截屏截不到鼠标。。。

头文件代码

#include <windows.h>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <ctime>
#ifndef KEY_DOWN
#define KEY_DOWN(VK_NONAME) ((GetAsyncKeyState(VK_NONAME) & 0x8000) ? 1:0)
#endif
#define clean 0x2
#define box 0x4
#define full 0x1
using namespace std;
 
enum concol {
	black = 0,
	dark_blue = 1,
	dark_green = 2,
	dark_aqua = 3, dark_cyan = 3,
	dark_red = 4,
	dark_purple = 5, dark_pink = 5, dark_magenta = 5,
	dark_yellow = 6,
	dark_white = 7,
	gray = 8,
	blue = 9,
	green = 10,
	cyan = 11,
	red = 12,
	purple = 13, pink = 13,
	yellow = 14,
	white = 15
};
 
struct pixel {
	concol color;
};
 
struct Pos {
	int x, y;
};
 
struct Pos3d
{
	int x, y, z ;
};
 
CONSOLE_CURSOR_INFO CursorInfo;
COORD _GoToPos;
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
HWND hwnd = GetForegroundWindow();
int backcol, textcol;
pixel _LastScreen[1000][1000];
pixel _NewScreen[1000][1000];
int _ScreenSideLength;
int Py3dx = 0, Py3dy = 0 ;
int xzlen = 2, yzlen = 1 ;
int fontsize = 16;
 
inline void getmousepos(Pos &p) {
	POINT pt;
	GetCursorPos(&pt);
	ScreenToClient(hwnd, &pt);
	p.y = (pt.y / fontsize + 0.5);
	p.x = (pt.x / fontsize + 0.5);
}
 
inline void gt(short x, short y) {
	--x;
	--y;
	_GoToPos = {x * xzlen, y * yzlen};
	SetConsoleCursorPosition(hOut, _GoToPos);
}
 
inline void HideCursor()
{
	GetConsoleCursorInfo(hOut, &CursorInfo);
	CursorInfo.bVisible = false;
	SetConsoleCursorInfo(hOut, &CursorInfo);	
}
 
inline void settextcolor(concol textcolor) {
	textcol = textcolor;
	unsigned short wAttributes = ((unsigned int)backcol << 4) | (unsigned int)textcol;
	SetConsoleTextAttribute(hOut, wAttributes);
}
 
inline void setbackcolor(concol backcolor) {
	hOut = GetStdHandle(STD_OUTPUT_HANDLE);
	backcol = backcolor;
	unsigned short wAttributes = ((unsigned int)backcol << 4) | (unsigned int)textcol;
	SetConsoleTextAttribute(hOut, wAttributes);
}
 
struct Button {
	Pos mp;
	const char* name;
	int len, qx, px, py;
	void rename(const char* ne) {
		name = ne;
		len = strlen(ne);
	}
	
	void setpos(int x, int y) {
		py = y;
		qx = (x - len / 2);
		px = (x + len / 2);
		gt(qx, y);
		printf(name);
	}
	bool check() {
		
		getmousepos(mp);
		if (mp.x <= px and mp.x >= qx and mp.y <= py and mp.y >= py - 2) {
			gt(qx - 2, py);
			printf(">>");
			gt(px, py);
			printf("<<");
			if (KEY_DOWN(MOUSE_MOVED)) return true;
		} else {
			gt(qx - 2, py);
			printf("  ");
			gt(px, py);
			printf("  ");
		}
		return false;
	}
};
 
 
inline void init(int x, int fz) {
	fontsize = fz;
	GetConsoleCursorInfo(hOut, &CursorInfo);
	CursorInfo.bVisible = false;
	SetConsoleCursorInfo(hOut, &CursorInfo);
	_ScreenSideLength = x;
}
 
inline void update() {
	for (int i = 1; i <= _ScreenSideLength ; ++i) {
		for (int j = 1; j <= _ScreenSideLength ; ++j) {
			if (_LastScreen[j][i].color != _NewScreen[j][i].color) {
				gt(j, i);
				setbackcolor(_NewScreen[j][i].color);
				for(int i=1;i<=yzlen;++i)
				{
					for(int j=1;j<=xzlen;++j)
						putchar(' ');
					puts("\n");
				}		
				_LastScreen[j][i] = _NewScreen[j][i];
			}
		}
	}
}
 
void fill(concol color) {
	for (int i = 1; i <= _ScreenSideLength; ++i) {
		for (int j = 1; j <= _ScreenSideLength; ++j) {
			if (_NewScreen[j][i].color != color) {
				_NewScreen[j][i].color = color;
			}
 
		}
	}
}
 
void rect(int sx, int sy, int ex, int ey, concol color) {
	if (ey < sy) swap(ey, sy);
	if (ex < sx) swap(ex, sx);
	for (int i = sy; i <= ey; ++i) {
		for (int j = sx; j <= ex; ++j) {
			_NewScreen[j][i].color = color;
		}
	}
}
 
void ChangePy(int x, int y)
{
	Py3dx = x;
	Py3dy = y;
}
 
inline void dot(int x, int y, concol color) {
	_NewScreen[x][y].color = color;
}
 
inline void line(int sx, int sy, int ex, int ey, concol color)
{
	int xlen = ex - sx ;
	int ylen = ey - sy ;
	int len = sqrt(pow(xlen, 2) + pow(ylen, 2)) ;
	for(double i=0; i<=len; i += 1)
	{
		int x = xlen * i / len ;
		int y = ylen * i / len ;
		_NewScreen[x + sx][y + sy].color = color ;
	}
}
 
inline Pos pos3t2(Pos3d pos)
{
	if(pos.z == 0)
	{
		return Pos {pos.x, pos.y} ;
	}
	return Pos{pos.x / (log10(pos.z)) + Py3dx, pos.y / (log10(pos.z)) + Py3dy} ;
}
 
inline void line3d(Pos3d a, Pos3d b, concol color)
{
	Pos a2 = pos3t2(a);
	Pos b2 = pos3t2(b);
//	line(a2.x, b2.y, a2.y, b2.x, color);
	line(a2.x, a2.y, b2.x, b2.y, color);
}
 
inline int dis3d(Pos3d a, Pos3d b)
{
	int x = abs(a.x - b.x);
	int y = abs(a.y - b.y);
	int z = abs(a.z - b.z);
	return sqrt(pow(x, 2) + pow(y, 2) + pow(z, 2)) ;
}
 

inline void rect3d(Pos3d q, Pos3d w, Pos3d a, Pos3d s, concol color)
{
	int qlen = dis3d(q, a);
	int plen = dis3d(w, s);
	int len = max(qlen, plen);
	for(double i=1;i<=len; i+=0.1)
	{
		Pos3d qpos = Pos3d {abs(q.x-a.x)*i/len + q.x, abs(q.y-a.y)*i/len + q.y, abs(q.z-a.z)*i/len + q.z} ;
		Pos3d ppos = Pos3d {abs(w.x-s.x)*i/len + w.x, abs(w.y-s.y)*i/len + w.y, abs(w.z-s.z)*i/len + w.z} ;
		line3d(qpos, ppos, color);
	}
}
 
struct cube
{
	
	Pos3d pos ;
	int xlen, ylen, zlen ;
	
	void init(int xp, int yp, int zp, int xl, int yl, int zl)
	{
		pos = Pos3d {xp - Py3dx, yp - Py3dy, zp};
		xlen = xl;
		ylen = yl;
		zlen = zl;
	}
	
	inline Pos3d getdotpos(int doti)
	{
		switch(doti)
		{
			case 8: return Pos3d {pos.x + xlen, pos.y + ylen, pos.z + zlen} ;
			case 7: return Pos3d {pos.x, pos.y + ylen, pos.z + zlen} ;
			case 6: return Pos3d {pos.x + xlen, pos.y, pos.z + zlen} ;
			case 4: return Pos3d {pos.x + xlen, pos.y + ylen, pos.z} ;
			case 5: return Pos3d {pos.x, pos.y, pos.z + zlen} ;
			case 3: return Pos3d {pos.x, pos.y + ylen, pos.z} ;
			case 2: return Pos3d {pos.x + xlen, pos.y, pos.z} ;
			case 1: return Pos3d {pos.x, pos.y, pos.z} ;
		}
		return {0, 0, 0}; //Else
	}
		
	inline void draw(concol color, int mode)
	{
		if(mode & full)
		{
		rect3d(getdotpos(5), getdotpos(7), getdotpos(6), getdotpos(8), green);
		rect3d(getdotpos(1), getdotpos(3), getdotpos(5), getdotpos(7), red);
		rect3d(getdotpos(5), getdotpos(1), getdotpos(6), getdotpos(2), blue);
		rect3d(getdotpos(7), getdotpos(3), getdotpos(8), getdotpos(4), pink);
		rect3d(getdotpos(2), getdotpos(4), getdotpos(6), getdotpos(8), yellow);
		rect3d(getdotpos(1), getdotpos(3), getdotpos(2), getdotpos(4), white);			
		}
		if(mode & clean)
		{
		line3d(getdotpos(1), getdotpos(2), color) ;
		line3d(getdotpos(1), getdotpos(3), color) ;
		line3d(getdotpos(1), getdotpos(5), color) ;
		line3d(getdotpos(2), getdotpos(6), color) ;
		line3d(getdotpos(2), getdotpos(4), color) ;
		line3d(getdotpos(3), getdotpos(4), color) ;
		line3d(getdotpos(3), getdotpos(7), color) ;
		line3d(getdotpos(4), getdotpos(8), color) ;
		line3d(getdotpos(5), getdotpos(6), color) ;
		line3d(getdotpos(5), getdotpos(7), color) ;
		line3d(getdotpos(6), getdotpos(8), color) ;
		line3d(getdotpos(7), getdotpos(8), color) ;
		}
		if(mode & box)
		{
			line3d(getdotpos(1), getdotpos(4), color) ;
			line3d(getdotpos(1), getdotpos(7), color) ;
			line3d(getdotpos(2), getdotpos(3), color) ;
			line3d(getdotpos(2), getdotpos(8), color) ;
			line3d(getdotpos(3), getdotpos(5), color) ;
			line3d(getdotpos(3), getdotpos(8), color) ;
			line3d(getdotpos(4), getdotpos(7), color) ;
			line3d(getdotpos(4), getdotpos(6), color) ;
			line3d(getdotpos(5), getdotpos(2), color) ;
			line3d(getdotpos(5), getdotpos(8), color) ;
			line3d(getdotpos(6), getdotpos(1), color) ;
			line3d(getdotpos(6), getdotpos(7), color) ;				
		}
	}
};

总结

到此这篇关于C++控制台绘图头文件的文章就介绍到这了,更多相关C++控制台绘图头文件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

C++控制台绘图头文件实例代码

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

C++控制台绘图头文件实例代码

控制台(console)是电脑的最基本交互接口,通常包括键盘(keyboard)和屏幕(screen),下面这篇文章主要给大家介绍了关于C++控制台绘图头文件的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考下
2023-01-28

C语言绘制曲线图的示例代码

C语言绘制曲线图示例代码摘要本文提供了一个使用C语言绘制曲线图的示例代码。该代码包含初始化图形窗口、绘制坐标轴、转换坐标、绘制曲线等步骤。代码中,数据点存储在x和y数组中,函数plotCurve根据这些数据绘制曲线。initwindow函数控制图形窗口大小,setorigin函数设置绘图原点,line函数绘制坐标轴和曲线。通过修改代码中的数据和调整窗口大小,用户可以创建定制的曲线图。该代码为理解和实现C语言中的曲线图绘制提供了清晰的示例。
C语言绘制曲线图的示例代码
2024-04-02

C语言绘制雷达图的示例代码

本文介绍了用C语言绘制雷达图的示例代码。雷达图是一种可视化数据的方法,将多维数据点表示为雷达图,每个维度对应于图中的一条轴。代码中使用RadarData结构存储数据,包括值、数量和最大值。draw_radar_chart()函数绘制雷达图,save_radar_chart()函数将其保存到文件中。代码演示了如何创建、设置、绘制和保存雷达图,有助于读者理解雷达图在C语言中的绘制过程。
C语言绘制雷达图的示例代码
2024-04-02

Android实现绘制LocationMarkerView图的示例代码

LocationMarker是运动轨迹上Start、End,以及整公里点上笔者自定义绘制的一个MarkerView。这篇文章主要介绍了Android实现绘制LocationMarkerView图的示例代码,希望对大家有所帮助
2023-02-10

C#实现绘制鼠标的示例代码

这篇文章主要为大家详细介绍了如何利用C#实现绘制鼠标的效果,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以跟随小编一起了解一下
2022-12-23

WPF实现绘制3D图形的示例代码

WPF的3D功能可以在不编写任何c#代码的情况下进行绘制,只需要使用xaml即可完成3D图形的渲染。本文主要讲述了WPF-3D中的关键概念,以及常用到的命中测试、2d控件如何在3D对象中进行渲染,希望大家有所帮助
2023-03-02

Struts2 控制文件上传下载功能实例代码

之前介绍servlet3.0新特性的时候有提到过servlet API提供了一个part类来实现对文件的上传和保存,Struts其实是在其基础上做了进一步的封装,更加简单易用。至于文件下载,Struts贯彻AOP 思想,在下载之前提供对用户
2023-05-31

C语言实现绘制绕线画的示例代码

绕线画简单点来说,就是在木板上钉一圈钉子,通过绕线进行构图,最终呈现出一幅图像。本文将用C语言实现这一效果,感兴趣的小伙伴可以尝试一下
2022-11-13

学习Python绘图的速成指南:绘制冰墩墩的代码实例

快速上手Python绘图:画出冰墩墩的代码示例Python是一种简单易学且功能强大的编程语言,通过使用Python的绘图库,我们可以轻松地实现各种绘图需求。在本篇文章中,我们将使用Python的绘图库matplotlib来画出冰墩墩的简单
学习Python绘图的速成指南:绘制冰墩墩的代码实例
2024-01-13

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录