2002-03-26 10:06:28 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2002-03-26 10:59:39 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "screenhack.h"
|
|
|
|
|
2002-03-26 10:06:28 +00:00
|
|
|
/*
|
2002-03-26 10:59:39 +00:00
|
|
|
* Specific implementations for X11, using the generic LCD API and data.
|
2002-03-26 10:06:28 +00:00
|
|
|
*/
|
|
|
|
|
2002-03-26 14:27:03 +00:00
|
|
|
#include "lcd-x11.h"
|
2002-03-26 10:59:39 +00:00
|
|
|
|
2002-04-11 12:40:39 +00:00
|
|
|
extern unsigned char display[LCD_WIDTH][LCD_HEIGHT/8];
|
2002-04-19 12:55:12 +00:00
|
|
|
extern void screen_resized(int width, int height);
|
|
|
|
extern Display *dpy;
|
2002-03-26 10:59:39 +00:00
|
|
|
|
2002-04-27 23:41:41 +00:00
|
|
|
unsigned char display_copy[LCD_WIDTH][LCD_HEIGHT/8];
|
|
|
|
|
2002-03-26 10:59:39 +00:00
|
|
|
void lcd_update (void)
|
|
|
|
{
|
2002-04-19 12:55:12 +00:00
|
|
|
int x, y;
|
|
|
|
int p=0;
|
|
|
|
int bit;
|
|
|
|
XPoint points[LCD_WIDTH * LCD_HEIGHT];
|
2002-04-27 23:41:41 +00:00
|
|
|
int cp=0;
|
|
|
|
XPoint clearpoints[LCD_WIDTH * LCD_HEIGHT];
|
2002-03-26 10:59:39 +00:00
|
|
|
|
2002-04-27 23:41:41 +00:00
|
|
|
#if 0
|
2002-04-19 12:55:12 +00:00
|
|
|
screen_resized(LCD_WIDTH, LCD_HEIGHT);
|
|
|
|
|
|
|
|
for(y=0; y<LCD_HEIGHT; y+=8) {
|
|
|
|
for(x=0; x<LCD_WIDTH; x++) {
|
|
|
|
if(display[x][y/8]) {
|
|
|
|
/* one or more bits/pixels are set */
|
|
|
|
for(bit=0; bit<8; bit++) {
|
|
|
|
if(display[x][y/8]&(1<<bit)) {
|
|
|
|
points[p].x = x + MARGIN_X;
|
|
|
|
points[p].y = y+bit + MARGIN_Y;
|
|
|
|
p++; /* increase the point counter */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-03-26 10:59:39 +00:00
|
|
|
}
|
|
|
|
}
|
2002-04-27 23:41:41 +00:00
|
|
|
#else
|
|
|
|
for(y=0; y<LCD_HEIGHT; y+=8) {
|
|
|
|
for(x=0; x<LCD_WIDTH; x++) {
|
|
|
|
if(display[x][y/8] || display_copy[x][y/8]) {
|
|
|
|
/* one or more bits/pixels are changed */
|
|
|
|
unsigned char diff =
|
|
|
|
display[x][y/8] ^ display_copy[x][y/8];
|
|
|
|
|
|
|
|
for(bit=0; bit<8; bit++) {
|
|
|
|
if(display[x][y/8]&(1<<bit)) {
|
|
|
|
/* set a dot */
|
|
|
|
points[p].x = x + MARGIN_X;
|
|
|
|
points[p].y = y+bit + MARGIN_Y;
|
|
|
|
p++; /* increase the point counter */
|
|
|
|
}
|
|
|
|
else if(diff &(1<<bit)) {
|
|
|
|
/* clear a dot */
|
|
|
|
clearpoints[cp].x = x + MARGIN_X;
|
|
|
|
clearpoints[cp].y = y+bit + MARGIN_Y;
|
|
|
|
cp++; /* increase the point counter */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy a huge block */
|
|
|
|
memcpy(display_copy, display, sizeof(display));
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
drawdots(0, &clearpoints[0], cp);
|
2002-04-30 13:29:08 +00:00
|
|
|
drawdots(1, &points[0], p);
|
2002-05-03 06:54:41 +00:00
|
|
|
/* Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp);*/
|
2002-04-19 12:55:12 +00:00
|
|
|
XSync(dpy,False);
|
2002-03-26 10:59:39 +00:00
|
|
|
}
|
2002-05-04 12:25:06 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
/* simulation layer for charcells */
|
|
|
|
void lcd_clear_display(void)
|
|
|
|
{
|
2002-05-17 14:38:08 +00:00
|
|
|
sim_lcd_clear_display();
|
2002-05-04 12:25:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_puts(int x, int y, char *string)
|
|
|
|
{
|
2002-05-17 14:38:08 +00:00
|
|
|
char buffer[12];
|
|
|
|
strncpy(buffer, string, 11);
|
|
|
|
buffer[11]=0;
|
2002-05-04 12:25:06 +00:00
|
|
|
|
2002-05-17 14:38:08 +00:00
|
|
|
sim_lcd_puts(x, y, buffer, 0);
|
|
|
|
lcd_update();
|
2002-05-04 12:25:06 +00:00
|
|
|
}
|
|
|
|
#endif
|