English Amiga Board


Go Back   English Amiga Board > Support > New to Emulation or Amiga scene

 
 
Thread Tools
Old 09 April 2017, 10:33   #1
VresiBerba
Registered User
 
Join Date: Dec 2009
Location: Sweden
Posts: 92
Edit system-configuration files

Noticed that several of the WHDLoad games I have installed have mouse movements set way too sensitive. So, is there a way to externally edit these without creating template system-configuration files, renaming them for each different configuration and using a file handler to simply overwrite the old one in each, and every devs folder?
VresiBerba is offline  
Old 11 April 2017, 18:29   #2
Wepl
Moderator
 
Wepl's Avatar
 
Join Date: Nov 2001
Location: Germany
Posts: 866
You can edit it using the Workbench 1.3 preferences program.
For example install a wb13 (http://whdload.de/apps/Workbench13.html) copy the system-configuration from your game therein, edit and copy back.
Wepl is offline  
Old 11 April 2017, 20:03   #3
VresiBerba
Registered User
 
Join Date: Dec 2009
Location: Sweden
Posts: 92
Quote:
Originally Posted by Wepl View Post
You can edit it using the Workbench 1.3 preferences program.
For example install a wb13 (http://whdload.de/apps/Workbench13.html) copy the system-configuration from your game therein, edit and copy back.
That is what I used to do back in the day, I thought that perhaps there's a simpler way to do this these days.
VresiBerba is offline  
Old 12 April 2017, 13:23   #4
daxb
Registered User
 
Join Date: Oct 2009
Location: Germany
Posts: 3,303
I don`t know if there is a description of system-configuration file but if not I would guess that you can hex edit it to change mouse speed. Without description save/create three system-configuration files each different mouse speed setting (nothing else changed). Then compare the three files. With some luck only one byte has changed every time. If that works you can more automate it by a macro or script or something else.
daxb is offline  
Old 12 April 2017, 13:38   #5
VresiBerba
Registered User
 
Join Date: Dec 2009
Location: Sweden
Posts: 92
Quote:
Originally Posted by daxb View Post
I don`t know if there is a description of system-configuration file but if not I would guess that you can hex edit it to change mouse speed. Without description save/create three system-configuration files each different mouse speed setting (nothing else changed). Then compare the three files. With some luck only one byte has changed every time. If that works you can more automate it by a macro or script or something else.
I suppose you could do that, but frankly just making a couple of them with different configurations and save under different names and just transfer them over when needed would be by far less clunky and time consuming. It's just a file you can move from one place to another, really.
VresiBerba is offline  
Old 12 April 2017, 15:01   #6
Amiga1992
Registered User
 
Join Date: May 2001
Location: ?
Posts: 19,645
It's a shame there is no new tool to change those. Having to boot up an old Workbench isn't always the best idea.
Is the format of this file documented anywhere?
Amiga1992 is offline  
Old 12 April 2017, 15:28   #7
Minuous
Coder/webmaster/gamer
 
Minuous's Avatar
 
Join Date: Oct 2001
Location: Canberra/Australia
Posts: 2,630
Yes, it is documented in the ROM Kernel Manuals:

The Preferences structure in 1.3 and earlier versions of the OS is a static 232 byte data structure defined in <intuition/preferences.h> as follows:

struct Preferences
{
/* the default font height */
BYTE FontHeight; /* height for system default font */
/* constant describing what’s hooked up to the port */
UBYTE PrinterPort; /* printer port connection */
/* the baud rate of the port */
UWORD BaudRate; /* baud rate for the serial port */
/* various timing rates */
struct timeval KeyRptSpeed; /* repeat speed for keyboard */
struct timeval KeyRptDelay; /* Delay before keys repeat */
struct timeval DoubleClick; /* Interval allowed between clicks */
/* Intuition Pointer data */
UWORD PointerMatrix[POINTERSIZE]; /* Definition of pointer sprite */
BYTE XOffset; /* X-Offset for active ’bit’ */
BYTE YOffset; /* Y-Offset for active ’bit’ */
UWORD color17; /***********************************/
UWORD color18; /* Colours for sprite pointer */
UWORD color19; /***********************************/
UWORD PointerTicks; /* Sensitivity of the pointer */
/* Workbench Screen colors */
UWORD color0; /***********************************/
UWORD color1; /* Standard default colours */
UWORD color2; /* Used in the Workbench */
UWORD color3; /***********************************/
/* positioning data for the Intuition View */
BYTE ViewXOffset; /* Offset for top lefthand corner */
BYTE ViewYOffset; /* X and Y dimensions */
WORD ViewInitX, ViewInitY; /* View initial offset values */
BOOL EnableCLI; /* CLI availability switch (OBSOLETE)*/
/* printer configurations */
UWORD PrinterType; /* printer type */
UBYTE PrinterFilename[FILENAME_SIZE]; /* file for printer */
/* print format and quality configurations */
UWORD PrintPitch; /* print pitch */
UWORD PrintQuality; /* print quality */
UWORD PrintSpacing; /* number of lines per inch */
UWORD PrintLeftMargin; /* left margin in characters */
UWORD PrintRightMargin; /* right margin in characters */
UWORD PrintImage; /* positive or negative */
UWORD PrintAspect; /* horizontal or vertical */
UWORD PrintShade; /* b&w, half-tone, or color */
WORD PrintThreshold; /* darkness ctrl for b/w dumps */
/* print paper descriptors */
UWORD PaperSize; /* paper size */
UWORD PaperLength; /* paper length in number of lines */
UWORD PaperType; /* continuous or single sheet */
/* Serial device settings: These are 6 nibble-fields in 3 bytes */
/* (these look a little strange so the defaults will map out to 0) */
UBYTE SerRWBits; /* upper nibble = (8-number of read bits) */
/* lower nibble = (8-number of write bits) */
UBYTE SerStopBuf; /* upper nibble = (number of stop bits - 1) */
/* lower nibble = (table value for BufSize) */
UBYTE SerParShk; /* upper nibble = (value for Parity setting) */
/* lower nibble = (value for Handshake mode) */
UBYTE LaceWB; /* if workbench is to be interlaced */
Preferences 333
UBYTE WorkName[FILENAME_SIZE]; /* temp file for printer */
BYTE RowSizeChange; /* affect NormalDisplayRows/Columns */
BYTE ColumnSizeChange;
UWORD PrintFlags; /* user preference flags */
UWORD PrintMaxWidth; /* max width of printed picture in 10ths/in */
UWORD PrintMaxHeight;/* max height of printed picture in 10ths/in */
UBYTE PrintDensity; /* print density */
UBYTE PrintXOffset; /* offset of printed picture in 10ths/inch */
UWORD wb_Width; /* override default workbench width */
UWORD wb_Height; /* override default workbench height */
UBYTE wb_Depth; /* override default workbench depth */
UBYTE ext_size; /* extension information -- do not touch! */
/* extension size in blocks of 64 bytes */ };
Minuous is offline  
Old 12 April 2017, 15:38   #8
VresiBerba
Registered User
 
Join Date: Dec 2009
Location: Sweden
Posts: 92
It would be so cool if someone could create a tool to edit the system-configuration file. Open a dialogue window, browse to the file, open it and be presented with a similar interface of the original preferences program, edit the configuration and save the file in its original location.
VresiBerba is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
A Utility to edit&create monitor files ancalimon request.Apps 22 05 January 2012 15:28
question about the configuration files crusader86x support.WinUAE 3 03 October 2011 19:33
Loading configuration files Pantzoid support.WinUAE 3 25 June 2007 21:12
system-configuration to save memory Tony Landais Coders. General 2 20 January 2004 21:58
system-configuration editor Tony Landais support.Apps 9 23 October 2003 08:28

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 10:00.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.38681 seconds with 15 queries