2 Copyright © 1995-2015, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include <proto/exec.h>
8 #include <intuition/iprefs.h>
9 #include <intuition/pointerclass.h>
10 #include <prefs/pointer.h>
11 #include <prefs/palette.h>
13 #include <proto/intuition.h>
14 #include <proto/graphics.h>
16 #include "intuition_intern.h"
18 /*****************************************************************************
21 AROS_LH3(ULONG
, SetIPrefs
,
24 AROS_LHA(APTR
, data
, A0
),
25 AROS_LHA(ULONG
, length
, D0
),
26 AROS_LHA(ULONG
, type
, D1
),
29 struct IntuitionBase
*, IntuitionBase
, 96, Intuition
)
36 Depending on the operation.
39 This function is currently considered private.
49 *****************************************************************************/
53 struct GfxBase
*GfxBase
= GetPrivIBase(IntuitionBase
)->GfxBase
;
55 ULONG lock
= LockIBase(0);
57 DEBUG_SETIPREFS(bug("SetIPrefs: data %p length %lu type %lu\n", data
, length
, type
));
61 case IPREFS_TYPE_ICONTROL_V37
:
62 DEBUG_SETIPREFS(bug("SetIPrefs: IP_ICONTROL_V37\n"));
63 if (length
> sizeof(struct IIControlPrefs
))
64 length
= sizeof(struct IIControlPrefs
);
65 CopyMem(data
, &GetPrivIBase(IntuitionBase
)->IControlPrefs
, length
);
67 DEBUG_SETIPREFS(bug("SetIPrefs: Drag modes: 0x%04lX\n", GetPrivIBase(IntuitionBase
)->IControlPrefs
.ic_VDragModes
[0]));
71 case IPREFS_TYPE_SCREENMODE_V37
:
73 BOOL reopen
= FALSE
, closed
= (GetPrivIBase(IntuitionBase
)->WorkBench
) ? FALSE
: TRUE
;
75 DEBUG_SETIPREFS(bug("SetIPrefs: IP_SCREENMODE_V37\n"));
76 if (length
> sizeof(struct IScreenModePrefs
))
77 length
= sizeof(struct IScreenModePrefs
);
79 if (!GetPrivIBase(IntuitionBase
)->ScreenModePrefs
)
80 GetPrivIBase(IntuitionBase
)->ScreenModePrefs
= AllocMem(sizeof(struct IScreenModePrefs
), MEMF_ANY
);
82 if (memcmp(GetPrivIBase(IntuitionBase
)->ScreenModePrefs
, data
,
83 sizeof(struct IScreenModePrefs
)) == 0)
94 while (try && !(closed
= CloseWorkBench()))
96 struct EasyStruct es
=
98 sizeof(struct EasyStruct
),
101 "Intuition is attempting to reset the screen,\n"
102 "please close all windows except Wanderer's ones.",
106 try = EasyRequestArgs(NULL
, &es
, NULL
, NULL
) == 1;
111 CopyMem(data
, GetPrivIBase(IntuitionBase
)->ScreenModePrefs
, sizeof(struct IScreenModePrefs
));
117 if (!OpenWorkBench())
119 /* FIXME: handle the error condition if OpenWorkBench() fails */
120 /* What to do if OpenWorkBench() fails? Try until it succeeds?
121 Try for a finite amount of times? Don't try and do nothing
133 case IPREFS_TYPE_POINTER_V39
:
134 DEBUG_SETIPREFS(bug("SetIPrefs: IP_POINTER_V39\n"));
136 struct IPointerPrefs
*fp
= data
;
137 struct TagItem pointertags
[] = {
138 {POINTERA_BitMap
, (IPTR
)fp
->BitMap
},
139 {POINTERA_XOffset
, fp
->XOffset
},
140 {POINTERA_YOffset
, fp
->YOffset
},
144 Object
*pointer
= NewObjectA(
145 GetPrivIBase(IntuitionBase
)->pointerclass
,
149 Object
**oldptr
= fp
->Which
?
150 &GetPrivIBase(IntuitionBase
)->BusyPointer
:
151 &GetPrivIBase(IntuitionBase
)->DefaultPointer
;
153 InstallPointer(IntuitionBase
, fp
->Which
, oldptr
, pointer
);
154 /* return -1 so that WB3.x C:IPrefs is happy */
159 case IPREFS_TYPE_POINTER_V37
:
160 DEBUG_SETIPREFS(bug("SetIPrefs: IP_POINTER_V37\n"));
162 struct Preferences
*ActivePrefs
= &GetPrivIBase(IntuitionBase
)->ActivePreferences
;
163 struct IPointerPrefsV37
*fp
= data
;
164 UWORD size
= fp
->YSize
* 2;
167 if (size
> POINTERSIZE
)
169 memset(ActivePrefs
->PointerMatrix
, 0, POINTERSIZE
* sizeof (UWORD
));
170 CopyMem(fp
->data
, ActivePrefs
->PointerMatrix
, size
* sizeof (UWORD
));
171 ActivePrefs
->XOffset
= fp
->XOffset
;
172 ActivePrefs
->YOffset
= fp
->YOffset
;
174 pointer
= MakePointerFromPrefs(IntuitionBase
, ActivePrefs
);
176 InstallPointer(IntuitionBase
, WBP_NORMAL
, &GetPrivIBase(IntuitionBase
)->DefaultPointer
, pointer
);
177 /* return -1 so that WB2.x C:IPrefs is happy */
182 case IPREFS_TYPE_PALETTE_V39
:
183 case IPREFS_TYPE_PALETTE_V37
:
184 DEBUG_SETIPREFS(bug("SetIPrefs: IP_PALETTE_V%d %p %d\n", type
== IPREFS_TYPE_PALETTE_V39
? 39 : 37, data
, length
));
186 struct ColorSpec
*pp
= data
;
187 struct Color32
*p
= GetPrivIBase(IntuitionBase
)->Colors
;
188 BOOL update_pointer
= FALSE
;
189 struct Preferences
*ActivePrefs
= &GetPrivIBase(IntuitionBase
)->ActivePreferences
;
191 DEBUG_SETIPREFS(bug("SetIPrefs: Intuition Color32 Table 0x%p\n", p
));
193 while (pp
->ColorIndex
!= -1)
197 idx
= pp
->ColorIndex
;
198 DEBUG_SETIPREFS(bug("SetIPrefs: Index %ld R 0x%04lX G 0x%04lX B 0x%04lX\n",
199 idx
, pp
->Red
, pp
->Green
, pp
->Blue
));
200 if (type
== IPREFS_TYPE_PALETTE_V37
) {
201 /* v37 cursor colors are 17 to 19 */
207 if (idx
>= 0 && idx
< COLORTABLEENTRIES
)
209 UWORD red
, green
, blue
;
210 if (type
== IPREFS_TYPE_PALETTE_V37
) {
211 /* 4-bit color components */
212 red
= (pp
->Red
<< 4) | pp
->Red
;
213 green
= (pp
->Green
<< 4) | pp
->Green
;
214 blue
= (pp
->Blue
<< 4) | pp
->Blue
;
215 red
= (red
<< 8) | red
;
216 green
= (green
<< 8) | green
;
217 blue
= (blue
<< 8) | blue
;
219 /* 8-bit color components */
225 p
[idx
].red
= (red
<< 16) | red
;
226 p
[idx
].green
= (green
<< 16) | green
;
227 p
[idx
].blue
= (blue
<< 16) | blue
;
229 /* Update oldstyle preferences */
237 cols
= &ActivePrefs
->color0
;
238 } else if (idx
>= 8 && idx
<= 10) {
240 cols
=&ActivePrefs
->color17
;
241 update_pointer
= TRUE
;
245 cols
[idx
- baseindex
] = ((red
>> 4) & 0xf00) | ((green
>> 8) & 0x0f0) | ((blue
>> 12));
247 DEBUG_SETIPREFS(bug("SetIPrefs: Set Color32 %ld R 0x%08lx G 0x%08lx B 0x%08lx\n",
256 if (update_pointer
) {
257 DEBUG_SETIPREFS(bug("[SetIPrefs] Updating pointer colors\n"));
258 SetPointerColors(IntuitionBase
);
263 case IPREFS_TYPE_PENS_V39
:
264 DEBUG_SETIPREFS(bug("SetIPrefs: IP_PENS_V39\n"));
266 struct IOldPenPrefs
*fp
= data
;
269 DEBUG_SETIPREFS(bug("SetIPrefs: Count %ld Type %ld\n",
275 dataptr
= &GetPrivIBase(IntuitionBase
)->DriPens4
[0];
276 DEBUG_SETIPREFS(bug("SetIPrefs: Pens4[]\n"));
280 dataptr
= &GetPrivIBase(IntuitionBase
)->DriPens8
[0];
281 DEBUG_SETIPREFS(bug("SetIPrefs: Pens8[]\n"));
283 for (i
=0;i
<NUMDRIPENS
;i
++)
285 if (fp
->PenTable
[i
]==(UWORD
)~0UL)
290 DEBUG_SETIPREFS(bug("SetIPrefs: PenTable end at entry %ld\n", (LONG
) i
));
295 DEBUG_SETIPREFS(bug("SetIPrefs: Pens[%ld] %ld\n",
297 (LONG
) fp
->PenTable
[i
]));
298 dataptr
[i
] = fp
->PenTable
[i
];
305 case IPREFS_TYPE_POINTER_ALPHA
:
306 DEBUG_SETIPREFS(bug("[SetIPrefs]: IP_POINTER_ALPHA\n"));
307 GetPrivIBase(IntuitionBase
)->PointerAlpha
= *(UWORD
*)data
;
310 case IPREFS_TYPE_OVERSCAN_V37
:
311 DEBUG_SETIPREFS(bug("[SetIPrefs]: IP_OVERSCAN_V37\n"));
314 case IPREFS_TYPE_FONT_V37
:
315 DEBUG_SETIPREFS(bug("SetIPrefs: IP_FONT_V37\n"));
317 struct IFontPrefs
*fp
= data
;
318 struct TextFont
*font
= OpenFont(&fp
->fp_TextAttr
);
319 struct TextFont
**fontptr
;
321 DEBUG_SETIPREFS(bug("SetIPrefs: Type %d Name <%s> Size %d Font %p\n", fp
->fp_ScrFont
, fp
->fp_Name
, fp
->fp_TextAttr
.ta_YSize
, font
));
325 if (fp
->fp_ScrFont
==0)
328 * We can't free graphics defaultfont..it`s shared
330 fontptr
= &GfxBase
->DefaultFont
;
334 fontptr
= &GetPrivIBase(IntuitionBase
)->ScreenFont
;
343 DEBUG_SETIPREFS(bug("SetIPrefs: Unknown Prefs Type\n"));
350 DEBUG_SETIPREFS(bug("SetIPrefs: Result 0x%lx\n",Result
));