2009-07-16 00:50:27 +00:00
|
|
|
/**
|
2009-07-16 02:04:31 +00:00
|
|
|
* $Id$
|
2009-07-16 00:50:27 +00:00
|
|
|
*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): Campbell Barton
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLF_api.h"
|
|
|
|
|
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
|
|
|
|
#include "DNA_space_types.h"
|
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
#include "DNA_userdef_types.h"
|
|
|
|
|
|
|
|
#include "BKE_global.h"
|
|
|
|
#include "BKE_main.h"
|
|
|
|
// #include "BKE_suggestions.h"
|
|
|
|
#include "BKE_text.h"
|
|
|
|
#include "BKE_report.h"
|
|
|
|
#include "BKE_utildefines.h"
|
|
|
|
|
|
|
|
#include "BIF_gl.h"
|
|
|
|
#include "BIF_glutil.h"
|
|
|
|
|
|
|
|
#include "ED_datafiles.h"
|
|
|
|
#include "UI_interface.h"
|
|
|
|
#include "UI_resources.h"
|
|
|
|
|
|
|
|
//#include "console_intern.h"
|
|
|
|
|
|
|
|
static void console_font_begin(SpaceConsole *sc)
|
|
|
|
{
|
|
|
|
static int mono= -1; // XXX needs proper storage
|
|
|
|
|
|
|
|
if(mono == -1)
|
|
|
|
mono= BLF_load_mem("monospace", (unsigned char*)datatoc_bmonofont_ttf, datatoc_bmonofont_ttf_size);
|
|
|
|
|
|
|
|
BLF_set(mono);
|
|
|
|
BLF_aspect(1.0);
|
|
|
|
|
|
|
|
BLF_size(sc->lheight, 72);
|
|
|
|
}
|
|
|
|
|
2009-07-16 07:11:46 +00:00
|
|
|
static void console_line_color(unsigned char *fg, int type)
|
2009-07-16 00:50:27 +00:00
|
|
|
{
|
2009-07-16 07:11:46 +00:00
|
|
|
switch(type) {
|
2009-07-16 00:50:27 +00:00
|
|
|
case CONSOLE_LINE_OUTPUT:
|
2009-07-16 07:11:46 +00:00
|
|
|
fg[0]=96; fg[1]=128; fg[2]=255;
|
2009-07-16 00:50:27 +00:00
|
|
|
break;
|
|
|
|
case CONSOLE_LINE_INPUT:
|
2009-07-16 07:11:46 +00:00
|
|
|
fg[0]=255; fg[1]=255; fg[2]=255;
|
2009-07-16 00:50:27 +00:00
|
|
|
break;
|
|
|
|
case CONSOLE_LINE_INFO:
|
2009-07-16 07:11:46 +00:00
|
|
|
fg[0]=0; fg[1]=170; fg[2]=0;
|
2009-07-16 00:50:27 +00:00
|
|
|
break;
|
|
|
|
case CONSOLE_LINE_ERROR:
|
2009-07-16 07:11:46 +00:00
|
|
|
fg[0]=220; fg[1]=96; fg[2]=96;
|
2009-07-16 00:50:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-16 07:11:46 +00:00
|
|
|
static void console_report_color(unsigned char *fg, int type)
|
2009-07-16 00:50:27 +00:00
|
|
|
{
|
2009-07-16 07:11:46 +00:00
|
|
|
/*
|
|
|
|
if (type & RPT_ERROR_ALL) { fg[0]=220; fg[1]=0; fg[2]=0; }
|
|
|
|
else if (type & RPT_WARNING_ALL) { fg[0]=220; fg[1]=96; fg[2]=96; }
|
|
|
|
else if (type & RPT_OPERATOR_ALL) { fg[0]=96; fg[1]=128; fg[2]=255; }
|
|
|
|
else if (type & RPT_INFO_ALL) { fg[0]=0; fg[1]=170; fg[2]=0; }
|
|
|
|
else if (type & RPT_DEBUG_ALL) { fg[0]=196; fg[1]=196; fg[2]=196; }
|
|
|
|
else { fg[0]=196; fg[1]=196; fg[2]=196; }
|
|
|
|
*/
|
|
|
|
|
|
|
|
fg[0]=0; fg[1]=0; fg[2]=0;
|
2009-07-16 00:50:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* return 0 if the last line is off the screen
|
|
|
|
* should be able to use this for any string type */
|
2009-07-16 07:11:46 +00:00
|
|
|
static int console_draw_string(char *str, int str_len, int console_width, int lheight, unsigned char *fg, unsigned char *bg, int winx, int winy, int *x, int *y)
|
2009-07-16 00:50:27 +00:00
|
|
|
{
|
2009-07-16 07:11:46 +00:00
|
|
|
int rct_ofs= lheight/4;
|
|
|
|
|
2009-07-16 00:50:27 +00:00
|
|
|
if(str_len > console_width) { /* wrap? */
|
|
|
|
int tot_lines = (str_len/console_width)+1; /* total number of lines for wrapping */
|
|
|
|
char *line_stride= str + ((tot_lines-1) * console_width); /* advance to the last line and draw it first */
|
|
|
|
char eol; /* baclup the end of wrapping */
|
|
|
|
|
2009-07-16 07:11:46 +00:00
|
|
|
if(bg) {
|
|
|
|
glColor3ub(bg[0], bg[1], bg[2]);
|
|
|
|
glRecti(0, *y-rct_ofs, winx, (*y+(lheight*tot_lines))+rct_ofs);
|
|
|
|
}
|
|
|
|
|
|
|
|
glColor3ub(fg[0], fg[1], fg[2]);
|
|
|
|
|
2009-07-16 00:50:27 +00:00
|
|
|
/* last part needs no clipping */
|
|
|
|
BLF_position(*x, *y, 0); (*y) += lheight;
|
|
|
|
BLF_draw(line_stride);
|
|
|
|
line_stride -= console_width;
|
|
|
|
|
|
|
|
for(; line_stride >= str; line_stride -= console_width) {
|
|
|
|
eol = line_stride[console_width];
|
|
|
|
line_stride[console_width]= '\0';
|
|
|
|
|
|
|
|
BLF_position(*x, *y, 0); (*y) += lheight;
|
|
|
|
BLF_draw(line_stride);
|
|
|
|
|
|
|
|
line_stride[console_width] = eol; /* restore */
|
|
|
|
|
|
|
|
/* check if were out of view bounds */
|
2009-07-16 07:11:46 +00:00
|
|
|
if(*y > winy)
|
2009-07-16 00:50:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { /* simple, no wrap */
|
2009-07-16 07:11:46 +00:00
|
|
|
|
|
|
|
if(bg) {
|
|
|
|
glColor3ub(bg[0], bg[1], bg[2]);
|
|
|
|
glRecti(0, *y-rct_ofs, winx, *y+lheight-rct_ofs);
|
|
|
|
}
|
|
|
|
|
|
|
|
glColor3ub(fg[0], fg[1], fg[2]);
|
|
|
|
|
2009-07-16 00:50:27 +00:00
|
|
|
BLF_position(*x, *y, 0); (*y) += lheight;
|
|
|
|
BLF_draw(str);
|
|
|
|
|
2009-07-16 07:11:46 +00:00
|
|
|
if(*y > winy)
|
2009-07-16 00:50:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CONSOLE_DRAW_MARGIN 8
|
2009-07-16 07:11:46 +00:00
|
|
|
#define CONSOLE_LINE_MARGIN 6
|
2009-07-16 00:50:27 +00:00
|
|
|
|
|
|
|
void console_text_main(struct SpaceConsole *sc, struct ARegion *ar, ReportList *reports)
|
|
|
|
{
|
|
|
|
ConsoleLine *cl= sc->history.last;
|
|
|
|
|
|
|
|
int x_orig=CONSOLE_DRAW_MARGIN, y_orig=CONSOLE_DRAW_MARGIN;
|
|
|
|
int x,y;
|
|
|
|
int cwidth;
|
|
|
|
int console_width; /* number of characters that fit into the width of the console (fixed width) */
|
2009-07-16 07:11:46 +00:00
|
|
|
unsigned char fg[3];
|
2009-07-16 00:50:27 +00:00
|
|
|
|
|
|
|
console_font_begin(sc);
|
|
|
|
cwidth = BLF_fixed_width();
|
|
|
|
|
|
|
|
console_width= (ar->winx - CONSOLE_DRAW_MARGIN*2)/cwidth;
|
|
|
|
if (console_width < 8) console_width= 8;
|
|
|
|
|
|
|
|
x= x_orig; y= y_orig;
|
|
|
|
|
|
|
|
if(sc->type==CONSOLE_TYPE_PYTHON) {
|
|
|
|
int prompt_len= strlen(sc->prompt);
|
|
|
|
|
|
|
|
/* text */
|
2009-07-16 07:11:46 +00:00
|
|
|
console_line_color(fg, CONSOLE_LINE_INPUT);
|
|
|
|
glColor3ub(fg[0], fg[1], fg[2]);
|
2009-07-16 00:50:27 +00:00
|
|
|
|
|
|
|
/* command line */
|
|
|
|
if(prompt_len) {
|
|
|
|
BLF_position(x, y, 0); x += cwidth * prompt_len;
|
|
|
|
BLF_draw(sc->prompt);
|
|
|
|
}
|
|
|
|
BLF_position(x, y, 0);
|
|
|
|
BLF_draw(cl->line);
|
|
|
|
|
|
|
|
/* cursor */
|
2009-07-16 07:11:46 +00:00
|
|
|
console_line_color(fg, CONSOLE_LINE_ERROR); /* lazy */
|
|
|
|
glColor3ub(fg[0], fg[1], fg[2]);
|
2009-07-16 00:50:27 +00:00
|
|
|
glRecti(x+(cwidth*cl->cursor) -1, y-2, x+(cwidth*cl->cursor) +1, y+sc->lheight-2);
|
|
|
|
|
|
|
|
x= x_orig; /* remove prompt offset */
|
|
|
|
|
|
|
|
y += sc->lheight;
|
|
|
|
|
|
|
|
for(cl= sc->scrollback.last; cl; cl= cl->prev) {
|
2009-07-16 07:11:46 +00:00
|
|
|
console_line_color(fg, cl->type);
|
2009-07-16 00:50:27 +00:00
|
|
|
|
2009-07-16 07:11:46 +00:00
|
|
|
if(!console_draw_string(cl->line, cl->len, console_width, sc->lheight+CONSOLE_LINE_MARGIN, fg, NULL, ar->winx, ar->winy, &x, &y))
|
2009-07-16 00:50:27 +00:00
|
|
|
break; /* past the y limits */
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Report *report;
|
|
|
|
int report_mask= 0;
|
2009-07-16 07:11:46 +00:00
|
|
|
int bool= 0;
|
|
|
|
unsigned char bg[3] = {114, 114, 114};
|
2009-07-16 00:50:27 +00:00
|
|
|
|
2009-07-16 07:11:46 +00:00
|
|
|
glClearColor(120.0/255.0, 120.0/255.0, 120.0/255.0, 1.0);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
2009-07-16 00:50:27 +00:00
|
|
|
/* convert our display toggles into a flag compatible with BKE_report flags */
|
|
|
|
if(sc->rpt_mask & CONSOLE_RPT_DEBUG) report_mask |= RPT_DEBUG_ALL;
|
2009-07-16 07:11:46 +00:00
|
|
|
if(sc->rpt_mask & CONSOLE_RPT_INFO) report_mask |= RPT_INFO_ALL;
|
2009-07-16 00:50:27 +00:00
|
|
|
if(sc->rpt_mask & CONSOLE_RPT_OP) report_mask |= RPT_OPERATOR_ALL;
|
2009-07-16 07:11:46 +00:00
|
|
|
if(sc->rpt_mask & CONSOLE_RPT_WARN) report_mask |= RPT_WARNING_ALL;
|
2009-07-16 00:50:27 +00:00
|
|
|
if(sc->rpt_mask & CONSOLE_RPT_ERR) report_mask |= RPT_ERROR_ALL;
|
|
|
|
|
|
|
|
for(report=reports->list.last; report; report=report->prev) {
|
|
|
|
|
|
|
|
if(report->type & report_mask) {
|
2009-07-16 07:11:46 +00:00
|
|
|
console_report_color(fg, report->type);
|
|
|
|
if(!console_draw_string(report->message, strlen(report->message), console_width, sc->lheight+CONSOLE_LINE_MARGIN, fg, bool?bg:NULL, ar->winx, ar->winy, &x, &y))
|
2009-07-16 00:50:27 +00:00
|
|
|
break; /* past the y limits */
|
2009-07-16 07:11:46 +00:00
|
|
|
|
|
|
|
y+=CONSOLE_LINE_MARGIN;
|
|
|
|
bool = !(bool);
|
2009-07-16 00:50:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|