summaryrefslogtreecommitdiff
path: root/src/common/graph.h
blob: 6c80dd41c6808b143c36ce4e3b0f9c50405072f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef _GRAPH_H_
#define _GRAPH_H_

void graph_init (void);
void graph_final (void);

struct graph* graph_create(unsigned int x,unsigned int y);
void graph_pallet(struct graph* g, int index,unsigned long c);
const unsigned char* graph_output(struct graph* g,int *len);
void graph_setpixel(struct graph* g,int x,int y,int color);
void graph_scroll(struct graph* g,int n,int color);
void graph_square(struct graph* g,int x,int y,int xe,int ye,int color);

// athena�̏�Ԃ𒲍�����Z���T�[��lj�����B
// string        : �Z���T�[�̖���(Login Users �Ȃ�)
// inetrval      : �Z���T�[�̒l����������Ԋu(msec)
// callback_func : �Z���T�[�̒l��Ԃ��֐�( unsigned int login_users(void); �Ȃ�) 

void graph_add_sensor(const char* string, int interval, unsigned int (*callback_func)(void));

#define graph_rgb(r,g,b) (((r) << 16) | ((g) << 8) | (b))

#endif