- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试制作一个程序,您可以通过单击鼠标来画一条线,当您按下按钮移动时,该线将改变大小和方向,并且当您松开按钮时,该线将保留在屏幕上(只需就像在油漆或任何其他照片编辑器中一样)。我正在使用 256-VGA 进行 C 工作。我遇到的问题是在鼠标光标所在的空间上画一条线。我有这两个函数来显示和隐藏鼠标:
typedef struct MOUSE{
byte on;
byte button1;
byte button2;
byte button3;
int num_buttons;
sword x;
sword y;
byte under[MOUSE_SIZE];
MOUSEBITMAP *bmp;
} MOUSE;
/**************************************************************************
* show_mouse *
* Displays the mouse. *
**************************************************************************/
void show_mouse(MOUSE *mouse){
int x,y;
int mx = mouse->x - mouse->bmp->hot_x;
int my= mouse->y - mouse->bmp->hot_y;
long screen_offset = (my<<8)+(my<<6);
word bitmap_offset = 0;
byte data;
//memcpy(double_buffer,VGA,SCREEN_SIZE);
/* allocate memory for double buffer and background image */
/*if ((double_buffer = (byte *) malloc(SCREEN_SIZE)) == NULL)
{
printf("Not enough memory for double buffer.\n");
exit(1);
} */
for(y=0;y<MOUSE_HEIGHT;y++){
for(x=0;x<MOUSE_WIDTH;x++,bitmap_offset++){
mouse->under[bitmap_offset] = VGA[(word) (screen_offset+mx+x)];
if(mx+x < SCREEN_WIDTH && mx+x >=0 &&
my+y < SCREEN_HEIGHT && my+y >=0) //Verificando que estemos dentro de pantalla
{
/*Pintando en pantalla*/
data = mouse->bmp->data[bitmap_offset];
if(data)
{
VGA[(word)(screen_offset+mx+x)] = data;
}
}
}
screen_offset+=SCREEN_WIDTH;
}
/*show_buffer(double_buffer);
free(double_buffer);*/
}
/**************************************************************************
* hide_mouse *
* hides the mouse. This code is not optimized. *
**************************************************************************/
void hide_mouse(MOUSE *mouse){
int x,y;
int mx = mouse->x - mouse->bmp->hot_x;
int my = mouse->y - mouse->bmp->hot_y;
long screen_offset = (my<<8)+(my<<6);
word bitmap_offset = 0;
/*memcpy(double_buffer,VGA,SCREEN_SIZE);
/* allocate memory for double buffer and background image */
/*if ((double_buffer = (byte *) malloc(SCREEN_SIZE)) == NULL)
{
printf("Not enough memory for double buffer.\n");
exit(1);
} */
for(y=0;y<MOUSE_HEIGHT;x++,y++){
for(x=0;x<MOUSE_WIDTH;x++,bitmap_offset++){
//Verificando que este dentro de pantalla
if(mx+x < SCREEN_WIDTH &&mx+x >=0 &&
my+y <SCREEN_HEIGHT && my+y >=0){
/*Pintando en pantalla*/
VGA[(word)(screen_offset+mx+x)] = mouse->under[bitmap_offset];
}
}
screen_offset+=SCREEN_WIDTH;
}
/*show_buffer(double_buffer);
free(double_buffer);*/
}
我有 MOUSE
结构的 under
变量,它在绘制之前具有屏幕的背景。为了使按住按钮时线条随鼠标移动,我存储鼠标之前的位置并绘制一条白线(以清理它),然后绘制另一条具有新位置的线。
问题是,然后我缩小了一条线的尺寸并沿着该线移动鼠标指针,鼠标的重画又再次绘制了之前的线。我得到这样的东西:
缩小线条后:
这是与控制鼠标按钮的循环相关的其余代码void realizar_accion(){
void realizar_accion(){
/*Caso1: Pintar pixel simple (lapiz)*/
if(accion==1){
plot_pixel(mouse_g.x,mouse_g.y,2);
plot_pixel(mouse_g.x-1,mouse_g.y,2);
plot_pixel(mouse_g.x,mouse_g.y-1,2);
plot_pixel(mouse_g.x-1,mouse_g.y-1,2);
}
/*Caso2: Pintar Linea*/
else if(accion==2){
init_x = mouse_g.x;
prevx = mouse_g.x;
init_y = mouse_g.y;
prevy = mouse_g.y;
//line(mouse_g.x,mouse_g.y,mouse_g.x-20,mouse_g.y-20,2);
}
}
void realizar_accion_mantenido(){
/*Caso1: Pintar pixel simple (lapiz)*/
if(accion==1){
plot_pixel(mouse_g.x,mouse_g.y,2);
plot_pixel(mouse_g.x-1,mouse_g.y,2);
plot_pixel(mouse_g.x,mouse_g.y-1,2);
plot_pixel(mouse_g.x-1,mouse_g.y-1,2);
}
/*Caso2: Pintar Linea*/
else if(accion==2){
if(on_draw==-1){
line(init_x,init_y,mouse_g.x,mouse_g.y,2);
prevx=mouse_g.x;
prevy=mouse_g.y;
on_draw=0;
}
else{
if(prevx!=mouse_g.x&&prevy!=mouse_g.y){
line(init_x,init_y,prevx,prevy,0xFFFF); //borrando la linea anterior
line(init_x,init_y,mouse_g.x,mouse_g.y,2);
prevx=mouse_g.x;
prevy=mouse_g.y;
}
}
}
}
int sobre_barra(){
if(new_x1>0 && new_x1<33 &&new_y1>0 &&new_y1<181){
return 1;
}
else{
return -1;
}
}
void boton_soltado(){
/*Caso1: Pintar pixel simple (lapiz)*/
if(accion==1){
}
/*Caso2: Pintar Linea*/
else if(accion==2){
if(on_draw==0){
line(init_x,init_y,prevx,prevy,0xFFFF); //borrando la linea anterior
wait_for_retrace();
hide_mouse(&mouse_g);
if (mouse_new!=NULL) mouse_g.bmp=mouse_new;
mouse_g.x = new_x1;
mouse_g.y=new_y1;
show_mouse(&mouse_g);
line(init_x,init_y,mouse_g.x,mouse_g.y,2);
prevx=mouse_g.x;
prevy=mouse_g.y;
on_draw=-1;
}
}
}
void boton_mantenido(){
/*Verificar que este dento del buffer de dibujo....*/
if(sobre_barra()!=1){
realizar_accion_mantenido();
}
}
void boton_presionado(){
if(sobre_barra()==1){
cambiar_herramienta();
}
else{
realizar_accion();
}
}
/**************************************************************************
* paint_screen *
* show main screen paint *
**************************************************************************/
void paint_screen(BITMAP *fondo){
int mantenido;
BITMAP barra,barra_color,normal_ptr_image;
int anterior_presionado;
word last_time;
word redraw,press,release;
sword dx,dy=0;
MOUSEBITMAP *mouse_new=NULL;
int i,done = 0;
on_draw=-1;
accion =2;
current_color=2;
/*Pintando fondo blanco*/
clear_screen();
/*Pintando barra de herramientas*/
load_bmp("normal.bmp",&normal_ptr_image);
load_bmp("mainbar.bmp",&barra);
load_bmp("colores.bmp",&barra_color);
set_pallete(fondo->pallete);
draw_bitmap(&barra,0,0);
draw_bitmap(&barra_color,0,180);
load_mouse(&mouse_g);
show_mouse(&mouse_g);
wait(50);
while(!done){
if(redraw){
wait_for_retrace();
hide_mouse(&mouse_g);
if (mouse_new!=NULL) mouse_g.bmp=mouse_new;
mouse_g.x = new_x1;
mouse_g.y=new_y1;
show_mouse(&mouse_g);
redraw=0;
mouse_new=NULL;
}
do { // check mouse status
anterior_presionado = press;
get_mouse_motion(&dx,&dy);
press = get_mouse_press(LEFT_BUTTON);
release = get_mouse_release(LEFT_BUTTON);
//Si el estado estaba presionado y no se ha soltado.. el boton esta mantenido
if(anterior_presionado==1 &&release==0){
mantenido =1;
}
} while (dx==0 && dy==0 && press==0 && release==0&&*my_clock==last_time);
if (release){
mouse_g.button1=0;
mantenido=0;
boton_soltado();
}
if (press){
mouse_g.button1=1;
boton_presionado();
}
//El boton se mantiene presionado
else if(mantenido){
boton_mantenido();
}
else{
release=1;
}
if (dx || dy) // calculate movement
{
new_x1 = mouse_g.x+dx;
new_y1 = mouse_g.y+dy; //Actualizamos posicion mouse
if (new_x1<0) new_x1=0;
if (new_y1<0) new_y1=0;
if (new_x1>319) new_x1=319;
if (new_y1>199) new_y1=199;
redraw=1;
}
if(new_x1>=287 && new_x1 <320
&& new_y1>=180 && new_y1 < 200 &&press){
set_mode(TEXT_MODE);
printf("Adios!!");
wait(25);
done=0;
return;
}
}
}
谁能帮我解决这个问题吗?
最佳答案
我不建议在旧线上画白线。相反,您应该使用帧缓冲区,它是屏幕外的内存区域,您每次都在其中重新组装它。画出背景,然后画出线条。一旦你放置了这条线,就把它画到背景上..但在那之前它是在之后绘制的。然后,在每个循环中,整个内容都会翻转/复制到屏幕上。有道理吗?
关于c - 画一条线: Problems with the mouse cursor on C Vga graphics,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34012121/
我使用 Apache DBCP 来获取连接池,我每次都使用 PoolingDataSource 来获取连接。当我向数据库中插入一个对象时,它工作得很好,但是当我尝试从数据库中选择一个元素时,就会出现问
术语“幽灵光标”有点令人困惑;我的意思是鼠标光标不是由用户控制的,而是由程序创建并完全控制的。 这意味着屏幕上现在有 2 个光标,而不是一个。 屏幕上是否有超过 1 个光标的概念?如果是,有什么方法/
我在关闭 SQLite 类中的 Cursor 时遇到问题。当我在finally block (在DBHelper中)中关闭游标和SQLiteDatabase时,我无法读取其他类中的数据(无法重新打开关
我想连接两个游标,连接后第二个游标的内容也出现在第一个游标中。 正是我的代码, public final Uri AllImage_URI_Int = MediaStore.Images.Media.
.Net 中的 Cursor.Current 和 this.Cursor(this 是 WinForm)之间有区别吗?我一直使用 this.Cursor 并且运气很好,但我最近开始使用 CodeRus
我在 R Studio 中使用 Cobalt 编辑器主题,我通过更改相应的 .cache.css 文件对其进行了微调。背景颜色是深色的(我的选择),但文本光标(鼠标指针)也是深色的,所以很难看清。我在
我做了以下事情: import MySQLdb as mdb con = mdb.connect(hostname, username, password, dbname) cur = con.cur
当我通过 psql 客户端运行此 SQL 查询时,它会运行几秒钟(~90 秒,这是正常的,因为它是一个巨大的表)并返回,然后我可以检查我的行是否已成功插入。 SELECT merge_data('89
我是用pymongo来查询一个地区的所有元素(其实是在一张 map 上查询一个地区的所有 field )。我之前使用 db.command(SON()) 在球形区域中搜索,它可以返回一个字典,并且在字
intellij 调试:运行到光标处,忽略光标前的所有断点。有办法吗?假设光标前有很多断点,不方便一一禁用。 Line10 Line500 <-- cursor 最佳答案 Force Run
看看这两个 python 代码片段, conn = MySQLdb.connect(c['host'], c['user'], c['password'], c['db']) cur = conn.c
我有 2 个来自 SQLite 数据库中不同表的游标。我正在尝试将来自两个游标的数据放入一个 ListView 但每个游标的数据格式不同。 我考虑的是使用 MergeCursor 来组合两个游
许多 RDBMS 支持某种“CURSOR”类型。这些类型在从存储过程返回时最有用。 Oracle 中的示例: TYPE t_cursor_type IS REF CURSOR; CREATE PROC
我的应用程序结合了 Swing 和 JavaFX。我希望所有组件都使用相同的光标。 从 AWT 游标创建 JavaFX 游标的最佳方法是什么? 编辑:有一个名为 javafx.embed.swing.
我在这里遇到问题: conn = psycopg2.connect(conn_string) cursor = conn.cursor() sql = """ SELECT DISTINCT
我想检索我的 Sqlite3 数据库的前 100 行: connection = sqlite3.connect('aktua.db') cursor = connection.cursor() pr
我目前正在使用 libclang 和 C++ 编写一个简单的克隆检测器。 程序使用结构存储游标,包含指向翻译单元的指针和通过调用 clang_getCursorLocation(cursor) 获得的
我有一个 Observable返回单个 Cursor实例(Observable)。我正在尝试利用 ContentObservable.fromCursor获取 onNext 中每个游标的行回调。 我想
许多 RDBMS 支持某种“CURSOR”类型。这些类型在从存储过程返回时最有用。 Oracle 中的示例: TYPE t_cursor_type IS REF CURSOR; CREATE PROC
我正在为可视化工具编写拖动系统。单击并拖动时,它会移动您在窗口中看到的内容。当鼠标碰到面板的边缘时,我开始重新定位光标,使其永远不会离开框。如果光标在框内,它会跟踪光标所在的虚拟位置。这部分代码工作正
我是一名优秀的程序员,十分优秀!