Ultimate Doom Builder

Any utility that assists in the creation of mods, assets, etc, go here. For example: Ultimate Doom Builder, Slade, WadSmoosh, Oblige, etc.
Forum rules
The Projects forums are ONLY for YOUR PROJECTS! If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.
User avatar
Tormentor667
Posts: 13533
Joined: Wed Jul 16, 2003 3:52 am
Contact:

Re: Ultimate Doom Builder

Post by Tormentor667 »

If I understood, I simply have to wait for the fix but there is no need to fix something myself?
User avatar
ZZYZX
 
 
Posts: 1384
Joined: Sun Oct 14, 2012 1:43 am
Location: Ukraine
Contact:

Re: Ultimate Doom Builder

Post by ZZYZX »

Kappes Buur wrote:
ZZYZX wrote:It's not a problem with the texture ...
The thing is though, that the included texture is 128x768.
Would that not make a difference?
No, because the issue is with horizontal align, and width of 128 is perfectly normal and expected/valid.
Tormentor667 wrote:If I understood, I simply have to wait for the fix but there is no need to fix something myself?
You can wait for the fix, or you can move the texture a bit and it will start aligning ;)
This is not top priority it seems (by looking at other things that surfaced recently)

To reword: there is a bug in the editor, but you can change your map to fix it faster.

edit: it seems there was also an issue with Y alignment, see boris' post below...
Last edited by ZZYZX on Wed Jan 01, 2020 7:33 pm, edited 1 time in total.
boris
Posts: 740
Joined: Tue Jul 15, 2003 3:37 pm

Re: Ultimate Doom Builder

Post by boris »

Tormentor667 wrote:If I understood, I simply have to wait for the fix but there is no need to fix something myself?
One question: which alignment do you mean? X or Y? I suspect Y, because there is indeed a bug with the negative scale of the texture, and that orange stuff at the top (which is actually at the bottom because the -1 Y scale) is not supposed to be seen there, right?
User avatar
Tormentor667
Posts: 13533
Joined: Wed Jul 16, 2003 3:52 am
Contact:

Re: Ultimate Doom Builder

Post by Tormentor667 »

Exactly boris, that is my problem :)
boris
Posts: 740
Joined: Tue Jul 15, 2003 3:37 pm

Re: Ultimate Doom Builder

Post by boris »

Ok, that's fixed.
User avatar
Kappes Buur
 
 
Posts: 4120
Joined: Thu Jul 17, 2003 12:19 am
Graphics Processor: nVidia (Legacy GZDoom)
Location: British Columbia, Canada
Contact:

Re: Ultimate Doom Builder

Post by Kappes Buur »

ZZYZX wrote:This functionality has been dropped. Forever. Due to causing numerous issues while trying to support it, and being massively incomplete (only MaxED was interested in finishing this 4 years ago).
Sorry. Please use SLADE to edit resources. Also, it's a good idea to keep your resources inside a directory during development (same structure as PK3)

"still open" is a bug :roll: should not be open
I used that feature a lot. But if it cannot be fixed ...
Now I have to get used to running UDB from Slade3. :cry:
User avatar
ZZYZX
 
 
Posts: 1384
Joined: Sun Oct 14, 2012 1:43 am
Location: Ukraine
Contact:

Re: Ultimate Doom Builder

Post by ZZYZX »

There was a temporary issue with silent editor crash to desktop if anyone updated to R3327. Should be fixed in R3329.
SanyaWaffles
Posts: 805
Joined: Thu Apr 25, 2013 12:21 pm
Preferred Pronouns: They/Them
Operating System Version (Optional): Windows 11 for the Motorola Powerstack II
Graphics Processor: nVidia with Vulkan support
Location: The Corn Fields
Contact:

Re: Ultimate Doom Builder

Post by SanyaWaffles »

Is there a way to fix a bug involving the map being locked. I can't zip up the PK3 unless the map is closed during zipping using 7zip from the command line.
User avatar
ZZYZX
 
 
Posts: 1384
Joined: Sun Oct 14, 2012 1:43 am
Location: Ukraine
Contact:

Re: Ultimate Doom Builder

Post by ZZYZX »

Map being locked won't be fixed (this is required for editor's functionality)
(maybe it will be fixed later though, not sure what exactly is the issue)

RESOURCES being locked though, can be fixed by choosing "open map resources in read-only mode". If this doesn't work — that's a bug.
User avatar
Tormentor667
Posts: 13533
Joined: Wed Jul 16, 2003 3:52 am
Contact:

Re: Ultimate Doom Builder

Post by Tormentor667 »

boris wrote:Ok, that's fixed.
Perfect, thanks!
User avatar
Darkcrafter
Posts: 564
Joined: Sat Sep 23, 2017 8:42 am
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia with Vulkan support

Re: Ultimate Doom Builder

Post by Darkcrafter »

Wow, thank you for your work! This thing works really well, even better than GZDoom Builder. Good job!
User avatar
DavidN
 
 
Posts: 266
Joined: Mon Dec 28, 2015 6:22 pm

Re: Ultimate Doom Builder

Post by DavidN »

SanyaWaffles wrote:Is there a way to fix a bug involving the map being locked. I can't zip up the PK3 unless the map is closed during zipping using 7zip from the command line.
If it helps, I keep my maps in a separate folder from the PK3 and use a little batch file to copy them in and then 7zip them whenever needed - you don’t need a lock to copy a file, so there’s no need to close the editor. I lay my projects out so that there's a "mapwork" folder for the maps, and a "pk3" folder that contains all the resources that will be zipped into the final PK3.

Code: Select all

@echo off
::::::::::::::
:: Variables
::::::::::::::
SET ziptool=c:\Program Files\7-Zip\7z.exe
SET finalpk3=.\keeper3.pk3
SET projectfolder=.\pk3\
SET acc=c:\doomwork\acc\acc

::::::::::::::
:: Delete the final file if it exists already (careful now)
::::::::::::::
echo Removing old file...
del "%finalpk3%"

:::::::::::::::
:: Prepares everything to go into this build of the PK3
:::::::::::::::
echo Compiling ACC
"%acc%" "%projectfolder%\acssource\acglobal_source.txt" "%projectfolder%\acs\acglobal.o"
echo Copying maps
xcopy .\mapwork\*.wad .\%projectfolder%\maps /y /q
echo Adding files from project
"%ziptool%" a -tzip "%finalpk3%" "%projectfolder%\*"
:::::::::::::::

echo Created %finalpk3%
pause
Last edited by DavidN on Sat Jan 04, 2020 3:43 pm, edited 1 time in total.
User avatar
Kappes Buur
 
 
Posts: 4120
Joined: Thu Jul 17, 2003 12:19 am
Graphics Processor: nVidia (Legacy GZDoom)
Location: British Columbia, Canada
Contact:

Re: Ultimate Doom Builder

Post by Kappes Buur »

Request :
To increase the number of backups to 10 or higher (maybe 25), if at all possible.
It would be great if it were selectable with a slider in F5, same as recent files.
That would make life so much easier.
User avatar
Benjogami
Posts: 2
Joined: Tue Jan 07, 2020 8:47 pm

Re: Ultimate Doom Builder

Post by Benjogami »

Excited to use Doom Builder in Linux, but I'm running into some problems:

1. When I try to go into Tools -> Preferences, UDB hangs.

2. It seems like alt key is stuck or something: when I press "s" to enter Sectors mode, for example, the Sectors menu opens instead. Similarly, when I press "e" to go forward in Visual mode, the Edit menu opens.

3. When using the mouse in Visual mode, I can only turn 90 degress left and right, and when I turn all the way right, the undo/redo history thing pops up. Seems like the pointer is still active or something.

4. The map-selection dialog only shows the last 5 maps, and when I select them they actually open the first 5 maps.

I'm pretty new to Linux and WINE, so if I'm slow to understand the steps to fix/workaround, I apologize. :D

Thanks!
User avatar
ZZYZX
 
 
Posts: 1384
Joined: Sun Oct 14, 2012 1:43 am
Location: Ukraine
Contact:

Re: Ultimate Doom Builder

Post by ZZYZX »

ew. Looks like all winforms issues. Version of WINE? Version of UDB? (are you using x86 one?)
Post Reply

Return to “Creation, Conversion, and Editing”