mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-04-03 14:55:06 +01:00
Add bitmap mouse by TomAwesome
Add handcoded SSE instruction demo
This commit is contained in:
parent
2467e31b7f
commit
9120a0d71b
8 changed files with 45 additions and 22 deletions
Binary file not shown.
|
@ -1,4 +1,7 @@
|
|||
$WW,1$$FG,5$$TX+CX,"ChangeLog"$$FG$
|
||||
$IV,1$----02/23/20 23:59:37----$IV,0$
|
||||
* Added new $LK,"bitmap mouse",A="MN:DrawStdMouse"$.
|
||||
|
||||
$IV,1$----02/23/20 02:36:28----$IV,0$
|
||||
* Renamed err -> error.
|
||||
|
||||
|
|
37
src/Home/SSE.CC
Executable file
37
src/Home/SSE.CC
Executable file
|
@ -0,0 +1,37 @@
|
|||
U0 MovQ()
|
||||
{
|
||||
MOV RBX, 30
|
||||
DU8 0x66, 0x48, 0x0F, 0x6E, 0xC3; //MOVQ XMM0, RBX
|
||||
DU8 0x66, 0x48, 0x0F, 0x7E, 0xC0; //MOVQ RAX, XMM0
|
||||
|
||||
"%d\n", GetRAX;
|
||||
}
|
||||
|
||||
MovQ;
|
||||
|
||||
asm {
|
||||
|
||||
// ALIGN 16
|
||||
DATA1: DU64 0xFFFFFFFF00000000, 0x00000000FFFFFFFF;
|
||||
DATA2: DU64 0x00000000FFFFFFFF, 0xFFFFFFFF00000000;
|
||||
|
||||
_POR_TEST::
|
||||
DU8 0xF3, 0x0F, 0x6F, 0x04, 0x25; //MOVDQU XMM0, [DATA1]
|
||||
DU32 DATA1;
|
||||
DU8 0xF3, 0x0F, 0x6F, 0x0C, 0x25; //MOVDQU XMM1, [DATA2]
|
||||
DU32 DATA2;
|
||||
DU8 0x66, 0x0F, 0xEB, 0xC1; //POR XMM0, XMM1
|
||||
DU8 0x66, 0x48, 0x0F, 0x7E, 0xC0; //MOVQ RAX, XMM0
|
||||
DU8 0x66, 0x48, 0x0F, 0x3A, 0x16, 0xC3, 0x01; //PEXTRQ RBX, XMM0, 1
|
||||
|
||||
CALL PUT_HEX_U64
|
||||
MOV RAX, ' ';
|
||||
CALL PUT_CHARS
|
||||
MOV RAX, RBX
|
||||
CALL PUT_HEX_U64
|
||||
MOV RAX, '\n'
|
||||
CALL PUT_CHARS
|
||||
RET
|
||||
}
|
||||
|
||||
Call(_POR_TEST);
|
|
@ -1598,8 +1598,8 @@ class CWinMgrTimingGlobals
|
|||
I64 calc_idle_count;
|
||||
};
|
||||
|
||||
#define WINMGR_FPS (30000.0/1001)
|
||||
#define WINMGR_PERIOD (1001/30000.0)
|
||||
#define WINMGR_FPS (60000.0/1001)
|
||||
#define WINMGR_PERIOD (1001/60000.0)
|
||||
|
||||
public class CWinMgrGlobals
|
||||
{
|
||||
|
|
|
@ -294,18 +294,6 @@ mesh_done:
|
|||
return res;
|
||||
}
|
||||
|
||||
#help_index "Graphics/Misc;Mouse/Ptr"
|
||||
public U0 DrawStdMouse(CDC *dc,I64 x,I64 y)
|
||||
{//This is a callback. See $LK,"::/Demo/Graphics/Grid.CC"$.
|
||||
//Called by $LK,"DrawMouse",A="MN:DrawMouse"$() which is
|
||||
//called by $LK,"WinFinalUpdate",A="MN:WinFinalUpdate"$().
|
||||
dc->flags&=~(DCF_TRANSFORMATION|DCF_SYMMETRY);
|
||||
dc->thick=1;
|
||||
GrArrow3(dc,x+8,y+8,0,x,y,0);
|
||||
}
|
||||
|
||||
gr.fp_draw_mouse=&DrawStdMouse;
|
||||
|
||||
public U0 DrawWaitMouse(CDC *dc,I64 x,I64 y)
|
||||
{//This is a callback. See $LK,"::/Demo/Graphics/Grid.CC"$.
|
||||
I64 old_pen_width=dc->thick;
|
||||
|
|
|
@ -168,7 +168,7 @@ U0 GrInit2()
|
|||
HashDefineListAdd("ST_SPRITE_ELEM_CODES",SPHT_ELEM_CODE,gr.sprite_hash);
|
||||
gr.screen_zoom=1;
|
||||
|
||||
PaletteSetPastel;
|
||||
PaletteSetDark;
|
||||
|
||||
gr.to_8_bits =MAlloc(256*sizeof(I64));
|
||||
gr.to_8_colors=MAlloc(256*sizeof(I64));
|
||||
|
|
|
@ -181,13 +181,8 @@ U0 DrawMouse(CDC *dc)
|
|||
POPFD
|
||||
if (mouse.show && mouse_hard.installed)
|
||||
{
|
||||
if (gr.fp_draw_mouse) {
|
||||
if (mouse.lb)
|
||||
dc->color=LTGREEN;
|
||||
else if (mouse.rb)
|
||||
dc->color=LTRED;
|
||||
else
|
||||
dc->color=BLACK;
|
||||
if (gr.fp_draw_mouse)
|
||||
{
|
||||
if (winmgr.grab_scroll && gr.fp_draw_grab_mouse)
|
||||
(*gr.fp_draw_grab_mouse)(dc,x,y,winmgr.grab_scroll_closed);
|
||||
else
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue