It's now part of the progression:
https://jp.itch.io/doom-fullrun/devlog/658269/updated-sigil-ii-now-included-in-p...
It's now part of the progression:
https://jp.itch.io/doom-fullrun/devlog/658269/updated-sigil-ii-now-included-in-p...
Thanks, not sure how long this was broken but it's fixed now: https://jp.itch.io/wadsmoosh/devlog/658262/wadsmoosh-141
What do you mean by "being flagged"? My understanding is that permission issues aren't a result of some "malicious software" detection heuristic, just a set of rules that applications have to follow to be able to do things like access different parts of the file system. Not knowing anything about how those rules might have changed for Win11, I could be wrong but that's my guess as to why you can't get a file listing for certain directories on your system from within Playscii.
Hm, looking at the source code it looks like the save dialog defaults to the user Documents/Playscii/ folder, but will change to whatever directory you last successfully saved something to, within the same session. Not the same as being able to set something that's persistent across sessions, but maybe that help? I'd have to think carefully about how to let users override some of the default paths it uses.
This is almost certainly a permissions issue, eg which directories an application is allowed to access. I don't have a Windows 11 system to test on, but I wouldn't be surprised if they changed a bunch of stuff in the name of security.
Do you know of any other 3rd party applications, particularly open source ones with public bug trackers, that have had this kind of issue? If so I could refer to what they did and maybe that'd help us fix this issue.
https://doomwiki.org/wiki/Skill_level#Doom_and_Doom_II_skill_levels :
The 2019 re-release introduced a new skill between Ultra-Violence and Nightmare!, entitled Ultra-Violence+. It behaves as UV with fast monsters but also enables the spawning of multiplayer-only map things in single player mode.
Dang, thanks for the heads up on this. Let me know if this new build doesn't fix it for you: https://jp.itch.io/mr-friendly/devlog/632301/build-74-a-fix-for-the-major-text-b...
Hmm, I'm not sure what to make of that error. So this crash occurs as you're launching the program? It looks like you're meeting the minimum required version #s for OpenGL and GLSL support. The only thing odd from that log output is your "detected screen resolution" of 128x128 and window size of 102x102 - Playscii tries to enforce a minimum window size of 320x240, as various things get weird below that. I'm not sure that that's the cause of this crash though. Without a ChromeOS device handy I'm really not sure how to go about troubleshooting it. I searched for ChromeOS (and Chrome, and "virgl") on the PyOpenGL mailing list to see if anyone had ever confirmed it even ran on that system, and didn't find anything... but PyOpenGL is also an old and very quiet project at this point.
Sorry I can't do more to help! If you're an experienced Python programmer you might try running some of the PySDL2 (the library that creates the window, handles input, and does other stuff) and PyOpenGL (the library that issues commands to the OpenGL context) examples (or write your own if they don't exist), just to see if those respective modules can even run on your hardware.
I've never used ChromeOS and can't offer any support for it. That error message suggests that Playscii failed to create an OpenGL draw context, which is the most basic initialization step after the window itself is created. I don't have a clear understanding of what the OpenGL/driver environment is like in ChromeOS and thus don't know why it would fail. If you're running "python playscii.py" from a terminal (which would be the correct way to run from source), are you seeing any logged lines prior to that error? Playscii logs every step of its initialization and it would be good to know how what it reports up to that point.
Search the main comments page here for E1M4 and you should find an addon (PK3) I made that adds these two to the map sequence. PK3s are just ZIP files so if you want a variation on that sequence you can just open it up and edit the mapinfo files in any text editor.
I've thought about this a lot over the years since it's such an obviously slow process, would lend itself extremely well to a multi-core and/or GPU accelerated approach, but it's never quite been clear how I'd pull it off - I'm not a particularly knowledgeable or powerful programmer in the directions that would make it easy to try those approaches. I'll let you know if I ever figure anything out.
Some of my old notes about it are on the playscii trello board, which I haven't touched in some time:
Those aren't official (or effectively-official, like Romero's maps) releases, so no. But if you look at the data inside the doom_complete.pk3 you could add support for those as new episodes without much difficulty - you could copy the mapinfo\doom2_levels.txt and have a decent template for a doom2-shaped episode, and only need to change a few things such as level names and music tracks.
This is just a hacky solution (and running WadSmoosh again will blow away these changes), but if you open the doom_complete.pk3 file in an archive editor (winzip, whatever) and go to the file mapinfo\masterlevels.txt, and delete every line that says "ResetHealth" and "ResetInventory", you will progress from level to level as you do in vanilla Doom 2 etc.
The maps are not balanced for this; you'll have a much easier time, but it's totally up to you how to enjoy them!
I don't really know anything about Wolf3D modding, but that's a cool idea - maybe someone knowledgeable in the Wolf3D community would be interested in it? I know ECWolf is one of the leading source ports these days: http://maniacsvault.net/ecwolf/
No. Maximum Doom is 3461 levels, some of which are duplicates, some of which don't work, some of which are actually Heretic levels, etc. It's all freely available from other sources anyway (WadSmoosh is for compiling retail content) and even if it weren't there's no reasonable way to integrate such a big mess.
Has this always happened? What OS are you running?
"binds.cfg" in your config dir is where the key bindings are defined, you could have a look at that file and see if anything looks out of the ordinary. i think the behavior of the mouse buttons might be hardcoded though.
I've avoided modifying any actual original map data at all costs, preferring instead to use GZDoom's runtime compatibility patching system to fix up anything. In that vein, I'd say you could simply edit the MAPINFO in the E1M8b addon, add the "ResetHealth" keyword to the E1M8b block of that data and you'll start that map with 100 health instead of whatever you ended E1M8 with.
I mean, I drag/drop doom.wad, doom2.wad, tnt.wad, plutonia.wad, chex3.wad, freedoom1.wad, freedoom2.wad, hacx.wad, heretic.wad, hexen.wad, hexdd.wad, and strife1.wad onto the GZDoom exe without issue
The reason those work is because those are all vanilla Doom data and don't redefine any of GZDoom's cvars (console / user config values). The error you're getting is GZDoom saying that you're trying to define the same cvar twice, which you'd definitely get if you're loading doom_complete.pk3 as both an IWAD (as defined in your gzdoom.ini, which gets set when you pick an IWAD from the pre-launch window) and as a PWAD (by dragging it onto the EXE, which GZDoom always interprets as "load this WAD as an addon").
doom_complete.pk3 is an IWAD (an IPK3, functionally the same thing - a primary resource file, same as DOOM2.WAD) so you don't drag it onto GZDoom.exe like you would an addon wad (PWAD). When GZDoom pops up with a window asking which IWAD to use, select doom_complete.pk3 - that is now your running IWAD, and you can access all the episodes etc. The reason GZDoom gave you that script error is because you were effectively loading doom_complete.pk3 twice.
I definitely don't have any time or energy for doing any Playscii support right now, but here's the code that does the image conversion:
https://heptapod.host/jp-lebreton/playscii/-/blob/branch/default/image_convert.p...
Oh hey, it looks like you can't read:
As Playscii's sole author, I have multiple objections to the creation and selling of Non-Fungible Token (NFT) art and do not approve of said use. Legally I cannot stop you but I offer absolutely no support to such users, and I am not interested in engaging with them on this subject. See this section of the project's web page for more information on this.
You will get zero further support from me.
I'd like to see if I can reproduce this on my system. If you feel comfortable sending me the source file(s) you're trying to convert, email me at the address on this page: http://vectorpoem.com/contact.html
I thought pressing the use key or fire button would always reload your last save/autosave in GZdoom, is that not happening here? I tried opening the map that way and dying just now and that's what it did... also tested walking through the final portal and "dying" to trigger the E1 finale text, that worked fine too.
1. This question falls under the "why don't you add WadSmoosh support for [random free mod that you can just download and load in like any other mod]?" section of the WadSmoosh FAQ - because WadSmoosh is for packaging up retail content only.
2. The point of Master Levels Menu Interface is that you can jump into any level at random. The point of this mod is that the levels have been placed into a deliberate sequence that establishes them in the context of their authors' other work. These ideas are incompatible.
Try typing just this at the terminal:
python
and see what appears next. If that actually launches the Python interpreter, quit out of it and type
which python
If that returns a path (eg /usr/bin/python) then try running
python wadsmoosh.py
from the directory where you have WadSmoosh.
Let me know what each of those commands result in. Like I said I don't know anything about ChromeOS specifically but if you're able to get a reasonably normal Linux environment, running programs in python should be straightforward.