music-field/include/graphs.hpp

359 lines
8.6 KiB
C++
Raw Normal View History

2018-12-25 13:41:30 +00:00
#ifndef graphs_h
#define graphs_h
#include <type.hpp>
using std::string;
using std::vector;
using std::list;
using std::pair;
using std::map;
class Field;
2018-12-26 09:32:18 +00:00
//绘图函数声明
2018-12-25 13:41:30 +00:00
unsigned long fresh_screen(int signal);
2018-12-26 09:32:18 +00:00
//计算函数声明
2018-12-25 13:41:30 +00:00
void draw_fields(int signal);
2018-12-26 09:32:18 +00:00
/************************************************
***/
2018-12-25 13:41:30 +00:00
class Color{
public:
2018-12-26 09:32:18 +00:00
// 颜色的RGB值范围从0到1
2018-12-25 13:41:30 +00:00
double red, green, blue;
2018-12-26 09:32:18 +00:00
2018-12-25 13:41:30 +00:00
Color():red(1.0),blue(1.0),green(1.0){
2018-12-26 09:32:18 +00:00
2018-12-25 13:41:30 +00:00
}
Color(RawColor color){
red = color[0]/255;
blue = color[1]/255;
green = color[2]/255;
}
Color(const Color &color){
red = color.red;
blue = color.blue;
green = color.green;
}
2018-12-26 09:32:18 +00:00
/**
@param color RawColor颜色数据
*/
2018-12-25 13:41:30 +00:00
void setColor(RawColor color){
red = color[0]/255;
green = color[1]/255;
blue = color[2]/255;
}
2018-12-26 09:32:18 +00:00
/**
@param color Color颜色数据
*/
2018-12-25 13:41:30 +00:00
void setColor(Color color){
red = color.red;
blue = color.blue;
green = color.green;
}
2018-12-26 09:32:18 +00:00
// 将颜色按照相关比例变亮
2018-12-25 13:41:30 +00:00
void brighter(void){
red = sqrt(red);
blue = sqrt(blue);
green = sqrt(green);
}
};
2018-12-26 09:32:18 +00:00
/************************************************
***/
2018-12-25 13:41:30 +00:00
class Shape{
public:
2018-12-26 09:32:18 +00:00
// 图形形状
2018-12-25 13:41:30 +00:00
GLenum type;
2018-12-26 09:32:18 +00:00
// 点大小和画笔大小
2018-12-25 13:41:30 +00:00
GLfloat point_size, line_size;
2018-12-26 09:32:18 +00:00
// 图形顶点的坐标
2018-12-25 13:41:30 +00:00
vector<Point3> points;
2018-12-26 09:32:18 +00:00
// 图形颜色
2018-12-25 13:41:30 +00:00
Color color;
2018-12-26 09:32:18 +00:00
Shape():type(GL_POINTS),point_size(2.0f),line_size(2.0f),color({255,255,255}){
}
/**
glut函数库中的函数进行绘图前的初始化操作
*/
2018-12-25 13:41:30 +00:00
void flesh(void){
if(point_size != 1.0f)
glPointSize(point_size);
else if(line_size != 1.0f)
glLineWidth(line_size);
glColor3f(color.red, color.blue, color.green);
}
2018-12-26 09:32:18 +00:00
/**
@param color RawColor颜色数据
*/
2018-12-25 13:41:30 +00:00
void setColor(RawColor color){
this->color.setColor(color);
}
2018-12-26 09:32:18 +00:00
/**
@param color Color颜色数据
*/
2018-12-25 13:41:30 +00:00
void setColor(Color color){
this->color.setColor(color);
}
2018-12-26 09:32:18 +00:00
/**
@param pos 线
*/
2018-12-25 13:41:30 +00:00
void setRetangle(const pair<Point3,Point3> pos){
double fx = pos.first[0],fy = pos.first[1];
double sx = pos.second[0], sy = pos.second[1];
setPolygon({{fx,fy,0},{sx,fy,0},{sx,sy,0},{fx,sy,0}});
}
2018-12-26 09:32:18 +00:00
/**
@param pos
*/
2018-12-25 13:41:30 +00:00
void setPolygon(const vector<Point3> pos){
type = GL_POLYGON;
for(auto i = pos.begin(); i != pos.end(); i++){
points.push_back(*i);
}
}
};
2018-12-26 09:32:18 +00:00
/************************************************
***/
2018-12-25 13:41:30 +00:00
class View2D {
public:
Point pos;
vector<Shape> shapes;
};
2018-12-26 09:32:18 +00:00
/************************************************
***/
2018-12-25 13:41:30 +00:00
class Bar:public View2D {
public:
Bar(Point, GLint width){
2018-12-26 07:07:19 +00:00
//Shape *p_shape = new Shape();
2018-12-25 13:41:30 +00:00
}
};
2018-12-26 09:32:18 +00:00
/************************************************
***/
2018-12-25 13:41:30 +00:00
class Window {
public:
2018-12-26 09:32:18 +00:00
// 储存指向窗体中要包含的图形对象的指针
2018-12-25 13:41:30 +00:00
static list<Shape *> shapes;
2018-12-26 09:32:18 +00:00
// 储存指向窗体中要包含的控件对象的指针
2018-12-25 13:41:30 +00:00
static map<string,View2D *> menus;
2018-12-26 09:32:18 +00:00
2018-12-25 13:41:30 +00:00
Window(int argc, char **argv){
glutInit(&argc, argv);
}
2018-12-26 09:32:18 +00:00
/**
@param Mode GLUT函数库相关说明即可
*/
2018-12-25 13:41:30 +00:00
void playMode(int Mode){
glutInitDisplayMode(Mode);
}
2018-12-26 09:32:18 +00:00
/**
@param sizexy Size数据
*/
2018-12-25 13:41:30 +00:00
void size(Size sizexy){
glutInitWindowSize(static_cast<int>(sizexy.first), static_cast<int>(sizexy.second));
}
2018-12-26 09:32:18 +00:00
/**
@param positionxy Point数据
*/
2018-12-25 13:41:30 +00:00
void position(Point positionxy){
glutPositionWindow(positionxy.first, positionxy.second);
}
2018-12-26 09:32:18 +00:00
/**
@param name
@param func
*/
2018-12-25 13:41:30 +00:00
void create(string name = "No Name",void (*func)() = Window::displayEngine){
glutCreateWindow(name.data());
glutDisplayFunc(func);
glutMouseFunc(mouseListener);
glutTimerFunc(DRAW_TIMER, draw_fields, 1);
glutTimerFunc(FRESH_TIMER, rendEngine, 1);
}
2018-12-26 09:32:18 +00:00
/**
@param color Color数据
*/
2018-12-25 13:41:30 +00:00
void setColor(Color color){
glClearColor(color.red, color.blue, color.green, 1.0f);
}
2018-12-26 09:32:18 +00:00
/**
*/
2018-12-25 13:41:30 +00:00
void show(void){
glutMainLoop();
}
2018-12-26 09:32:18 +00:00
/**
@param shape
*/
2018-12-25 13:41:30 +00:00
static void rendShape(Shape *shape){
if(shape->point_size != 1.0f)
glPointSize(shape->point_size);
else if(shape->line_size != 1.0f)
glLineWidth(shape->line_size);
glColor3f(shape->color.red, shape->color.blue, shape->color.green);
glBegin(shape->type);
for(auto k = shape->points.begin(); k != shape->points.end();k++){
glVertex3f((*k)[0],(*k)[1],(*k)[2]);
}
glEnd();
}
2018-12-26 09:32:18 +00:00
/**
*/
2018-12-25 13:41:30 +00:00
static void displayEngine(void){
glClear(GL_COLOR_BUFFER_BIT);
for(auto i = shapes.begin(); i != shapes.end(); i++)
rendShape(*i);
//for(auto i = menus.begin(); i != menus.end(); i++)
//rendShape((*i).second);
glutSwapBuffers();
}
2018-12-26 09:32:18 +00:00
/**
*/
2018-12-25 13:41:30 +00:00
static void mouseListener(int button,int state,int x,int y){
}
2018-12-26 09:32:18 +00:00
/**
@param value
*/
2018-12-25 13:41:30 +00:00
static void rendEngine(int value){
unsigned long ms = fresh_screen(0);
unsigned int now_fresh = (unsigned int)(FRESH_TIMER - ms);
if(now_fresh < 0 || now_fresh > FRESH_TIMER) now_fresh = 0;
glutTimerFunc(now_fresh, rendEngine, 1);
}
2018-12-26 09:32:18 +00:00
/**
*/
2018-12-25 13:41:30 +00:00
void draw_triangle(vector<Point3> pos, RawColor color={255, 255, 255}){
Shape *p_shape = new Shape;
p_shape->type = GL_TRIANGLES;
p_shape->setColor(color);
for(auto i = pos.begin(); i != pos.end(); i++){
p_shape->points.push_back(*i);
}
draw_shape(p_shape);
}
2018-12-26 09:32:18 +00:00
/**
*/
2018-12-25 13:41:30 +00:00
void draw_point(Point3 pos, GLfloat size = 1.0f, RawColor color={255, 255, 255}){
Shape *p_shape = new Shape;
p_shape->type = GL_POINTS;
p_shape->point_size = size;
p_shape->setColor(color);
p_shape->points.push_back(pos);
draw_shape(p_shape);
}
2018-12-26 09:32:18 +00:00
/**
*/
2018-12-25 13:41:30 +00:00
void draw_polygon(vector<Point3> pos, RawColor color={255,255,255}){
Shape *p_shape = new Shape;
p_shape->type = GL_POLYGON;
p_shape->setColor(color);
p_shape->setPolygon(pos);
draw_shape(p_shape);
}
2018-12-26 09:32:18 +00:00
/**
线
*/
2018-12-25 13:41:30 +00:00
void draw_line(pair<Point3,Point3> pos, GLfloat size = 1.0f, RawColor color={255,255,255}){
Shape *p_shape = new Shape;
p_shape->type = GL_LINES;
p_shape->line_size = size;
p_shape->setColor(color);
p_shape->points.push_back(pos.first);
p_shape->points.push_back(pos.second);
draw_shape(p_shape);
}
2018-12-26 09:32:18 +00:00
/**
*/
2018-12-25 13:41:30 +00:00
void draw_retangle(pair<Point3,Point3> pos, RawColor color={255,255,255}){
double fx = pos.first[0],fy = pos.first[1];
double sx = pos.second[0], sy = pos.second[1];
draw_polygon({{fx,fy},{sx,fy},{sx,sy},{fx,sy}},color);
}
2018-12-26 09:32:18 +00:00
/**
@param shape
*/
2018-12-25 13:41:30 +00:00
void draw_shape(Shape *shape){
shapes.insert(shapes.end(),shape);
}
2018-12-26 09:32:18 +00:00
/**
@param name
@param view
*/
2018-12-25 13:41:30 +00:00
void add_menu(string name, View2D *view){
menus.insert({name,view});
}
};
#endif /* graphs_h */