Hi folks.
I started using OS/2 2.0 when it was still in beta, but I
stopped using it in 1999 I think.
Since then I have developed my own OS, PDOS/386
(http://pdos.org), which runs a subset of win32
console mode applications.
An obscure sequence of events led to me purchasing
ArcaOS to see what a commercially supported rival
to Windows looked like, when I saw that it now ran
(some) win32 programs, via the pre-installed Odin.
I can't find any evidence that Odin is still being developed,
although it hasn't been that long (6 years) since the last
release.
My win32 programs (e.g. hexdump), that are dependent
on msvcrt.dll, did indeed work (when prefixed by "pec").
Note that I provide my own msvcrt.dll (that I wrote
myself - part of PDPCLIB) - ArcaOS doesn't ship with one.
However, programs of mine that use ANSI escape codes
do not work properly - the ESC appears to be ignored/
swallowed.
In addition, the doco says that the driver is no longer
working, so I need to run everything via pec. Which
probably means I need to provide my own shell.
Which I can probably do, as I have 3 flavors of my
shell already (for 3 different flavors of PDOS).
But that won't really work without ANSI escapes.
Well - I believe it will work to some extent.
Another thing I haven't figured out yet is how to get
LFN working on my FAT partition. There is supposedly
a "longname" extended attribute to allow this.
Any thoughts on how to create a win32 console
environment?
Hi Paul, note I'm not the most knowledgeable user, not many of us
monitoring usenet now though hopefully others can chime in. There are a couple of mailing lists and the OS2world forum as well where you might
get help.
I can't find any evidence that Odin is still being developed,
although it hasn't been that long (6 years) since the last
release.
As far as I know, it is not being developed anymore. It can be forked
and development continued. The last development was by Bitwise, things
like building OpenJDK, a Flash wrapper and running Flash and earlier by Innotek, running Adobe Acrobat.
Note that it is quite possible to use Odin to build native OS/2 Win32 applications such as was done with OpenJDK, x:\Programs\OpenJDK on your ArcaOS install or for source, https://trac.netlabs.org/java.
Development is usually done with GCC but OpenWatcom should work as well
with the right calling conventions.
However, programs of mine that use ANSI escape codes
do not work properly - the ESC appears to be ignored/
swallowed.
Not sure about that one, perhaps someone else has some insight.
In addition, the doco says that
Not sure about that one, perhaps someone else has some insight.I have confirmed that when I build my own OS/2 native
executables, the escape sequences take effect.
I believe that Win32 console applications executed via Odin are actually run in a PM window rather than a real OS/2 console window and ANSI codes are probably not interpreted there.
I think the VIO thing is what is swallowing the ESC character.
And what I need to do is switch to standard streams.
I don't think that you can ever get cursor keys from stdin under OS/2 - only regular characters are delivered that way. You'd need to use the (16-bit) kbdcalls with thunking, or some wrapper around it (EMXWRAP.DLL from EMX runtime, or something else).
However, programs of mine that use ANSI escape codes
do not work properly - the ESC appears to be ignored/
swallowed.
Not sure about that one, perhaps someone else has some insight.I have confirmed that when I build my own OS/2 native
executables, the escape sequences take effect.
So if I go the route of writing a public domain, somewhat
minimal, win32 environment for OS/2, I know that the
escapes will get through.
However, I still have a problem with keyboard input. I
need to get ANSI escapes - or at least - something -
when I press the different cursor keys. Otherwise my
version of microemacs 3.6 (also public domain - that
older version) won't work.
So I wrote a test program, and if I build it as a win32
executable (using pdpclib) and run it under "pec", all
the cursor keys generate a x'e0'.
If I instead build an OS/2 native executable (also with
pdpclib), I don't get any input at all.
The "keys off" command doesn't change either of
the above.
PDPCLIB is using this code:
C:\devel\pdos\pdpclib>git diff stdio.c
diff --git a/pdpclib/stdio.c b/pdpclib/stdio.c
index 685e3e4c..f6b837e6 100644
--- a/pdpclib/stdio.c
+++ b/pdpclib/stdio.c
@@ -1921,6 +1921,7 @@ static void iread(FILE *stream, void *ptr, size_t toread, size_t *actualRead)
#ifdef __OS2__
+printf("about to do dosread of %d\n", (int)stream->hfile);
rc = DosRead(stream->hfile, ptr, toread, &tempRead);
if (rc != 0)
{
C:\devel\pdos\pdpclib>
ie doing a DosRead from handle 0.
I thought there might be a DosDevIOCtl that governs this
behavior, so I went looking for the documentation.
I was surprised that this was all I could find online:
http://www.edm2.com/index.php/DosDevIOCtl
which is insufficient. I actually need three things for
a fullscreen editor like microemacs:
1. Cursor keys to come through with unique codes.
2. Echo switched off.
3. Line buffering switched off.
On MSDOS I can use INT 21H AH=44H to change those
last two things. But without documentation I don't know
if the equivalent exists in OS/2. I know what is required
in Windows too.
In addition, the doco says that the driver is no longer
working, so I need to run everything via pec. Which
probably means I need to provide my own shell.
Which I can probably do, as I have 3 flavors of my
shell already (for 3 different flavors of PDOS).
Wonder if it is possible to run PDOS in a DOS session?PDOS/86 is an 8086 OS, so it would be a replacement
for OS/2's DOS, and not be useful regardless.
But PDOS/386 has the infrastructure to do 32-bit for
Windows, so as above - I can potentially do what I want
in an OS/2 window.
Although - I just realized while typing this that I could
possibly install HX into a DOS window to run everything.
I come close to being able to do that in Freedos+HX
already.
But that won't really work without ANSI escapes. ;-----;;;;;;;
I think the VIO thing is what is swallowing the ESC character.
And what I need to do is switch to standard streams.
I had some luck.
I finally found the programming documentation:
gave me a return code of 22, which I found out from the
Watcom header is UNKNOWN_COMMAND, and that
seems to be documented here:
This function returns an UNKNOWN_ COMMAND error if the caller is in the Presentation Manager session
Even though I'm running via command prompt. I tried opening
a fullscreen window, but that didn't change anything, ie still
rc 22.
Then I had the idea that maybe I'm not supposed to be using
the Physical Device Driver Reference and I should instead be
using either the Virtual Device or Presentation.
I'm currently downloading those manuals and it's taking a while.
I also checked the Watcom header and found:
bsesub.h: USHORT APIENTRY16 KbdCharIn(PKBDKEYINFO,USHORT,HKBD);
So it's the 16-bit call that was mentioned, and Watcom
must do auto-thunking.
Ideally I wouldn't rely on that and would switch to 32-bit
DosDevIOCtl:
bsedos.h: APIRET APIENTRY DosDevIOCtl(HFILE,ULONG,ULONG,PVOID,ULONG,PULONG,PVOID,ULONG,PULONG);
(note APIENTRY, not APIENTRY16)
I'm pretty sure the docs must be elsewhere as well and not only scans. Try searching for "OS/2 Control Program Reference".
Have you made sure to set the application type to "VIO" (or "VIO compatible", or whatever it's named there - not PM and not FS)
but simple console programs are not supposed to do that.
When DosMonReg is issued with keyboard devices,
I will try that next I guess.
form ::= "OS2" ["FLat"|"LE"|"LX"] ["PHYSdevice" | "VIRTdevice"
| ["DLl"["INITGlobal"|"INITInstance" ["TERMInstance"|"TERMGlobal"]]
| "PM" | "PMCompatible" | "FULLscreen"]
On Sunday, July 16, 2023 at 2:17:12 PM UTC+8, Paul Edwards wrote:.
http://www.edm2.com/index.php/CPGuide_-_Control_Program_Functions
Sounds like windows(VIO) = "PMCompatible".
And regardless, "fullscreen" is surely the opposite of "PM session".
So how can I get a rc = 22 even when I choose fullscreen?
http://www.edm2.com/index.php/CPGuide_-_Control_Program_Functions
Yes, edm2.com is a reasonable source.
So how can I get a rc = 22 even when I choose fullscreen?
Because you try to use functions intended for device drivers in a
regular application instead of following the received advice?
On Sunday, July 16, 2023 at 6:58:40 PM UTC+8, xhajt03 wrote:
That link seems to have not been converted properly.
The functions for controlling a COM port are there,
but not other devices like the keyboard. So you need
to go to the PDF for them.
So how can I get a rc = 22 even when I choose fullscreen?
Because you try to use functions intended for device drivers in aI'm sorry if I appear to be difficult, but I'm trying to understand
regular application instead of following the received advice?
the situation.
There are lots of DosDevIOCtl things. E.g. you can set the baud
rate of a COM port. Surely this is something for regular
applications to do - not just device drivers?
Also note that other systems (MSDOS, Windows, Unix) use
ioctl for regular programs to change between canonical and
raw mode etc too. At least as an OPTION for the regular
streams.
So who is allowed to call the KBD DosDevIOCtl?.
Crikey. I thought that OS/2 2.0 had done a total switch to 32-bit.
Another consideration is that 16 bit functions are stuck needing to be
in the lower memory range (below 1GB, or actually below 512MB - whatever DLLs are loaded. Mem /v will show your memory).
Win32's got broken on OS/2 by MS forcing some DLL's to load above the
1GB barrier and even now some functions probably require OS/2 4.5+ for
high memory access.
I had some luck.
I finally found the programming documentation:
http://www.os2museum.com/wp/os2-history/os2-library/os2-2-0-technical-library/
and now I know (PDF scan) why google searching didn't find it.
I thought this was the right manual:
http://www.os2museum.com/files/docs/os220tl/os2-2.0-pdd-ref-1992.pdf
On Monday, July 17, 2023 at 11:45:01 AM UTC+8, Dave Yeo wrote:
Another consideration is that 16 bit functions are stuck needing to be
in the lower memory range (below 1GB, or actually below 512MB - whatever
DLLs are loaded. Mem /v will show your memory).
Win32's got broken on OS/2 by MS forcing some DLL's to load above the
1GB barrier and even now some functions probably require OS/2 4.5+ for
high memory access.
Did you mean Win32s?
That works under OS/2?
Is it allowed to be installed on OS/2? Or is it native?
Noting that I already have my own msvcrt.dll, I was actually
thinking of creating a custom version of msvcrt.dll that worked
on win32s for Windows for Workgroups 3.11 (by doing text
on a graphics window).
All I need to do is run pe.exe instead of pec.exe.
Win32s 1.25 is here, https://hobbes.nmsu.edu/?path=%2Fpub%2Fwindows%2Fsystem%2Fwin32s
Hobbes has a lot of OS/2 software.
All I need to do is run pe.exe instead of pec.exe.
Actually I realized I will have a problem with "pe" when one
of my executables tries to spawn another executable - unless
I prefix the command with "pe" it will attempt to run it as an
OS/2 program.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 445 |
Nodes: | 16 (0 / 16) |
Uptime: | 114:40:08 |
Calls: | 9,209 |
Calls today: | 8 |
Files: | 13,483 |
Messages: | 6,054,743 |