Page 64 of 70

Re: Ultimate Doom Builder

Posted: Sun Feb 25, 2024 8:03 am
by 7Soul
I'm very interested in that visual mode decal idea

Edit: or just make the decal visible in the selection window

Re: Ultimate Doom Builder

Posted: Wed Feb 28, 2024 11:57 am
by ramon.dexter
Trying to run latest version of UDB on ubuntu 22.04.04 through wine gives error:
Fatal Non-UI Error: Requested fontfamily could not be found and a pretty long error window.

Could this be fixed by any way? Running UDB through Steam Proton 8.0.5 works fine, but on my 2K laptop screen the UI is way too tiny and I don't know how to scale proton app ui, as proton doesn't have winecfg...I can use it through Proton only by lowering screen resolution, which is little bit unpleasant...

Re: Ultimate Doom Builder

Posted: Wed Feb 28, 2024 1:37 pm
by axredneck
ramon.dexter wrote: Wed Feb 28, 2024 11:57 amTrying to run latest version of UDB on ubuntu 22.04.04 through wine gives error:
Fatal Non-UI Error: Requested fontfamily could not be found and a pretty long error window.
Try `winetricks corefonts`.
Or try to compile native Linux version.

Re: Ultimate Doom Builder

Posted: Thu Feb 29, 2024 11:36 am
by ramon.dexter
axredneck wrote: Wed Feb 28, 2024 1:37 pm Or try to compile native Linux version.
Okay, this helped. I tried installing corefonts, but for some reason the error was still popping up.
Compilation of linux version took around five minutes, so this is a go. And it looks nice, so problem solved. Guess I'll just have to keep up with the updates...

Re: Ultimate Doom Builder

Posted: Tue Mar 05, 2024 12:26 pm
by NeuralStunner
7Soul wrote: Sun Feb 25, 2024 8:03 am I'm very interested in that visual mode decal idea
Same. It can be annoying to line up decals, especially when trying to align them to texels on an angled wall.

Re: Ultimate Doom Builder

Posted: Sun Mar 10, 2024 10:21 am
by TheSartremaster
Hi,
I have Ubuntu 22.04.4 LTS and compiled the Linux native version of UDB.
I have the issue that that every time I try to open a resource directory, UDB crashes with a "Fatal Windows Forms error occurred: Object reference not set to an instance of an object"

https://imgur.com/a/ERiDctT

Selecting pk3 and WADs works fine. The error persists if I use Wine on the x64 archive version.

Does anyone know if there is a fix for this? I have not seen this issue around, so I suspect there is maybe a config error on my part?

Re: Ultimate Doom Builder

Posted: Sun Mar 17, 2024 2:08 am
by ramon.dexter
Okay, one thing that troubles me: is the linux version little bit out-dated, or is the versioning on linux just different? Windows version is like version 46xx, while linux is only 3247...is that a problem, or linux version has different numbering?

Re: Ultimate Doom Builder

Posted: Sun Mar 17, 2024 5:28 am
by boris
The version number is set by the Windows build script (build_git_generic.cmd), so if you're compiling yourself it'll always show the old version set in the files. It's the same if you compile it yourself in Visual Studio on Windows without the build script.

Re: Ultimate Doom Builder

Posted: Sun Mar 17, 2024 8:41 am
by ramon.dexter
So, if I cloned the repository from official github, I have the latest one, feature - side, even if it shows older build number? That's good to know.

Re: Ultimate Doom Builder

Posted: Sun Mar 24, 2024 12:32 pm
by ClaireIsMemed
hiya i cant seem to get it to test my maps when i try to test them it says "unable to start the test program, Win32Exceptions: The specified executable is not a valid application for this OS platform."

Re: Ultimate Doom Builder

Posted: Mon Mar 25, 2024 2:47 am
by boris
Looks like you're trying to run the DOS doom.exe. That does not work on modern Windows. Try some port instead (like GZDoom, Chocolate Doom, DSDA-Doom).

Re: Ultimate Doom Builder

Posted: Thu Mar 28, 2024 8:41 am
by ramon.dexter
Okay, another report from ubuntu. Linux version is behaving weird, every second or third return to 3d mode locks off keyboard...and through wine, it is actually impossible to write into text fields, crashes instantly...

So, if anyone wonders, present state of udb is completely impossible to use on ubuntu 22.04 with wayland...

Re: Ultimate Doom Builder

Posted: Thu Mar 28, 2024 12:12 pm
by dpJudas
Not much we can do about it unfortunately. When we ported it to mono we didn't know their winforms implementation had been effectively abandoned.

The only way out of this situation I had success with involved forking mono winforms and put it into UDB itself. This would make it use the same framework both for Windows, Linux and macOS. The catch is that it would still require fixing some bugs in the implementation. While theoretically possible, it required more work than I'm willing to put into such a project on a hobby basis.

Re: Ultimate Doom Builder

Posted: Wed Apr 17, 2024 6:26 pm
by Kappes Buur
Over on Doomworld, Johnny_Vicc_007 had an interesting question How to make linedef give damage.
While my answers was rather simplistic, JaySmithen showed a working script.

So, I wondered, is it possible to simplify this with a few keys in UDMF with Edit Linedefs -> custom



I drew a complete blank on finding any information on how this works.
The Reference Manual and a forum search were no help.
Is there a list of predefined properties and how to make user properties,
and how this works in general.

Re: Ultimate Doom Builder

Posted: Wed Apr 17, 2024 11:22 pm
by boris
Uh... you can see a list of predefined properties right in your screenshot. The ones listed are what's in https://github.com/ZDoom/gzdoom/blob/ma ... _zdoom.txt, but not handled by the UI.

You add custom properties by clicking on the "(click to add custom field)" text, which - judging from the screenshot - you already did.

I'm not aware that GZDoom is capable of doing damage-on-bump out of the box, but of course it should be possible to implement it in ZScript based on custom UDMF properties of a line. But that's out of scope for this thread and should go to the scripting forum.