Alex/150
Chieftain
- Joined
- Mar 20, 2017
- Messages
- 41
Probably that was the issue. I made a fresh install from CD, applied patch 1.31, 1.50.8, copied sufficient files from ICE version, and it works now.
As far as I do not have a launcher, is there any way to launch all those new modes? Because what I have got by running ORION150.exe looks stable, but not as difficult and interesting as ICE mode.
put these 2 lines:
enable ICE-X;
enable MAP2_ICE;
into 150/ENABLE.CFG and run ORION2150.EXE. In main menu you should see Config: ICE-X15.
May you please make launcher fit into 640x480? Just for those who uses game as is.
Maybe some day GUI will change. If we support android for example. But don't expect it soon.
You can hack launcher yourself a bit, by editing files in /src:
1. edit file banner.gif so it is 1 pixed high. WIll be ugly but will take less space. Don't change its width tho.
2. in src/main.tcl, you can remove dosbox options, find line
Code:
set ::gui_dosbox [enum_widgets .r.dosbox_form Dosbox
you'll see groups of records after it. Add skip 1 to each group but last, e.g. was:
Code:
{
label m-output
help m-output-help
spath {dosbox sdl output}
options {surface overlay opengl openglnb ddraw}
default openglnb
readonly 1
} {
becomes:
Code:
{
label m-output
help m-output-help
spath {dosbox sdl output}
options {surface overlay opengl openglnb ddraw}
default openglnb
readonly 1
skip 1
} {
most dosbox parameters will be gone, launcher will become smaller. You also can hack it to run ORION150.EXE directly vs running dosbox by changing
Code:
exec [lindex $d 0] -noconsole \
-conf $dbc_name \
-conf [norm_path $c 150 dosbox-base.conf] \
&
to
Code:
exec [app_path ORION150.EXE] &
Note that i did not check any of this, so might or might not work. Happy oldschooling.