C64Studio icon indicating copy to clipboard operation
C64Studio copied to clipboard

C64Studio 7 on Linux using mono

Open johanberntsson opened this issue 2 years ago • 19 comments

I've tried to get C64Studio running on Ubuntu 20.04. There are some copy problems in C64Studio.csproj, but they are easily fixed ny adding <PostBuildEvent Condition="'$(OS)' == 'Unix' ">cp $(TargetDir)C64Studio.exe $(SolutionDir)C64StudioRelease/$(TargetFileName) cp $(TargetDir).dll $(SolutionDir)C64StudioRelease rm -f "$(SolutionDir)C64StudioRelease/BASIC Dialects/" cp $(ProjectDir)BASIC?Dialects/* $(SolutionDir)C64StudioRelease/BASIC?Dialects</PostBuildEvent>

I can then build the program. However, when I run it I get

System.TypeInitializationException: The type initializer for 'GR.Image.DPIHandler' threw an exception. ---> System.EntryPointNotFoundException: GetDeviceCaps assembly: type: member:(null) at (wrapper managed-to-native) GR.Image.DPIHandler.GetDeviceCaps(intptr,int) at GR.Image.DPIHandler..cctor () [0x00029] in /home/johan/commodore/C64Studio/Common/Common/DPIHandler.cs:29 --- End of inner exception stack trace --- at C64Studio.OutputDisplay..ctor () [0x0000d] in /home/johan/commodore/C64Studio/C64Studio/Documents/OutputDisplay.cs:13 at (wrapper remoting-invoke-with-check) C64Studio.OutputDisplay..ctor() at C64Studio.MainForm..ctor (System.String[] args) [0x00000] in /home/johan/commodore/C64Studio/C64Studio/MainForm.cs:27 at (wrapper remoting-invoke-with-check) C64Studio.MainForm..ctor(string[]) at C64Studio.Program.Main (System.String[] args) [0x00023] in /home/johan/commodore/C64Studio/C64Studio/Program.cs:28

It seems to be some problem when calling gdi32.dll, which is mapped to libgdiplus.so.0 (see /etc/mono/config), and this library is installed. I don't know much about mono and can't get further, but it would be nice if it could be patched to work on Linux.

johanberntsson avatar Dec 20 '21 12:12 johanberntsson

Did you install the dotnet35 package? AFAIK this one was required when I tested it via PlayOnLinux in Ubuntu.

Edit: Just retested to be sure, 7.0 runs fine in Ubuntu for me. If there is anything you need for me to lookup in that system, just ask. I'm not particularely fit with Linux systems.

GeorgRottensteiner avatar Dec 20 '21 13:12 GeorgRottensteiner

I'm trying to get it to run on Linux itself, not through wine (which works). The problem seems to be that Xamarin/Mono have dropped support for older versions of .net on Linux, and the standard install is only for .net 4 and later. I found some instruction on how to install older versions but they are out of date and don't work any more. I don't know enough to fix this with a reasonable amount of effort.

johanberntsson avatar Dec 21 '21 01:12 johanberntsson

Ah, good catch. Some people are still using XP, and that's why I postponed updating the used .NET framework (still 3.5) I think one of these days I have to update anyhow. Ideally I'll switch to .NET Core. That ought to solve this particular problem.

GeorgRottensteiner avatar Dec 21 '21 05:12 GeorgRottensteiner

That sounds like a good idea. I'll try again when it happens.

johanberntsson avatar Dec 21 '21 05:12 johanberntsson

Does the same solution apply with macOS?

gcasa avatar Dec 25 '21 12:12 gcasa

I have absolutely no idea, but I guess that Mono works the same on different platforms.

GeorgRottensteiner avatar Dec 25 '21 14:12 GeorgRottensteiner

when building and running the latest master through latest Mono on Arch Linux, the program builds fine (after changing the post build task), but when running it seems to try to access a folder that only root can, not sure why though

i

Beyley avatar Apr 09 '22 03:04 Beyley

After fixing that problem by creating the folder with the right permissions, i was able to get far enough to see that a lot of code is directly talking with the native Windows APIs, first problem that came up was with the DPIHandler, which i just stubbed out, next was the FastImage class, which heavily uses the gdi32.dll native library, it might be possible to gut out the class and replace it with the cross platform SixLabors.ImageSharp or to System.Drawing though. Overall, most native imports arent that important, and it may be possible to replace all of them, as only ~60 native imports are used

Ah, good catch. Some people are still using XP, and that's why I postponed updating the used .NET framework (still 3.5) I think one of these days I have to update anyhow. Ideally I'll switch to .NET Core. That ought to solve this particular problem.

Switching to .NET Core, would unfortanately not fix the issue, as it still doesnt provide Linux versions of GDI or any other native windows APIs, aside from that, .NET core would also create a bigger issue, that being WinForms, as .NET core has 0 winforms support on linux, so if linux is a target, then you will have to stick with .net framework/mono

EDIT: Apparently mono has a gdi32.dll replacement, but not a user32.dll replacement, which is used by FastImage

EDIT2: i managed to get it semi-running, but its crashing on FastColoredTextBox.cs due to Imm32.dll access i

Beyley avatar Apr 09 '22 04:04 Beyley

Yeah, I did some ugly PInvoke stuff with FastImage. Back when I introduced it I had performance issues and huge delays with System.Drawing. I'll see if I can fix it up now, should be doable. Imm32.dll is a problem though, that's Windows' input method manager for special keyboard layout methods. As I see it's only used in a few places; I could probably conditionally keep it out when compiling via Mono.

GeorgRottensteiner avatar Apr 09 '22 05:04 GeorgRottensteiner

Yeah, I did some ugly PInvoke stuff with FastImage. Back when I introduced it I had performance issues and huge delays with System.Drawing. I'll see if I can fix it up now, should be doable. Imm32.dll is a problem though, that's Windows' input method manager for special keyboard layout methods. As I see it's only used in a few places; I could probably conditionally keep it out when compiling via Mono.

I believe in Mono, the most popular IMEs do "just work" with the basic Mono WinForms controls, so yeah conditionally skipping the Imm32.dll calls on non-windows platforms would work

Beyley avatar Apr 09 '22 05:04 Beyley

Also, if you replace the property group at the end of C64Studio.csproj with

  <PropertyGroup>
    <PostBuildEvent Condition="'$(OS)' == 'Windows_NT' ">copy "$(TargetDir)C64Studio.exe" "$(SolutionDir)C64StudioRelease\$(TargetFileName)"
      copy "$(TargetDir)*.dll" "$(SolutionDir)C64StudioRelease"
      del "$(SolutionDir)C64StudioRelease\BASIC Dialects\*.*" /Q
      copy "$(ProjectDir)BASIC Dialects\*.*" "$(SolutionDir)C64StudioRelease\BASIC Dialects"</PostBuildEvent>
    <PostBuildEvent Condition="'$(OS)' == 'Unix' ">cp $(TargetDir)C64Studio.exe $(SolutionDir)C64StudioRelease/$(TargetFileName)
      cp $(TargetDir).dll $(SolutionDir)C64StudioRelease
      rm -f "$(SolutionDir)C64StudioRelease/BASIC Dialects/"
      cp $(ProjectDir)BASIC?Dialects/* $(SolutionDir)C64StudioRelease/BASIC?Dialects</PostBuildEvent>
  </PropertyGroup>

ittl fix the builds on linux

Beyley avatar Apr 09 '22 05:04 Beyley

hmmm it seems that compile time constant isnt working for me i

and also, that code doesnt compile anyway, as the top func is extern yet has a body, which produces a compile error

Beyley avatar Apr 09 '22 20:04 Beyley

After gutting out the caret funcs in FastColoredTextBox, i was able to get it fully booting on my local fork which just entirely guts fastimage and related code, so all thats left is to remove FastImage usage, and it should hopefully work on linux after that (i cant test too much here as a lot requires fastimage so this is really barebones) i

Beyley avatar Apr 09 '22 20:04 Beyley

Nice! It'll take a while to replace FastImage. Did you check if the cursor is still working in the editor control? The caret is the blinking cursor, that is crucial.

GeorgRottensteiner avatar Apr 10 '22 03:04 GeorgRottensteiner

Nice! It'll take a while to replace FastImage. Did you check if the cursor is still working in the editor control? The caret is the blinking cursor, that is crucial.

i

The position seems wrong, but other then that, it seems to work (albeit it blinks very slowly), i wonder if the position is wrong due to the font?

EDIT: Its actually decently usable, the caret position is just slightly too far right, but aside from that it seems to follow text properly

Beyley avatar Apr 10 '22 08:04 Beyley

One problem which is a little more important: the keys always activate the top bar's shortcuts , so letters like D are just untypable

Beyley avatar Apr 10 '22 08:04 Beyley

The shortcut issue is weird. I wonder if a SetFocus call got missing?

GeorgRottensteiner avatar Apr 11 '22 04:04 GeorgRottensteiner

The shortcut issue is weird. I wonder if a SetFocus call got missing?

Its possible i had accidentally stripped it out when mass deleting code that references FastImage

Beyley avatar Apr 11 '22 09:04 Beyley

Please keep hacking on this as I really want to use it on Linux with the least bit of fuss :-D

bugjacobs avatar Mar 13 '24 23:03 bugjacobs