Re: [REQ] Graphical fog slider

#11
CLgaming wrote:
Irontaco wrote:Awesome, thank you all.

Amazing how you guys push out stuff so quickly out of thin air, it would be neat to see these things and some more incorporated into the game so there's a lot of more, easier to change, customization of in-game aspects.
If only we had an addons/mods tab just like L4D2. We could just load up mods from the menu. :)
Yeah, except most of the mods modify the source code and none of the addons for L4D2 modify the source code, only add/change materials and maps.
Image

Re: [REQ] Graphical fog slider

#12
mrpeanut188 wrote:
CLgaming wrote:
Irontaco wrote:Awesome, thank you all.

Amazing how you guys push out stuff so quickly out of thin air, it would be neat to see these things and some more incorporated into the game so there's a lot of more, easier to change, customization of in-game aspects.
If only we had an addons/mods tab just like L4D2. We could just load up mods from the menu. :)
Yeah, except most of the mods modify the source code and none of the addons for L4D2 modify the source code, only add/change materials and maps.
Well if B3D was capable of JIT then we could make addons very easily; just have an addons folder and you'd have a folder for the addon, then subfolders for models, rooms, and parts of the source code that are changed (new NPCs, room events, etc). The only problem with that would be that certain addons such as 178 or 409 would need to be modified.
SCP - Box of Horrors v0.8.0b
Twitter
Github Profile

Re: [REQ] Graphical fog slider

#13
InnocentSam wrote:Well if B3D was capable of JIT then we could make addons very easily; just have an addons folder and you'd have a folder for the addon, then subfolders for models, rooms, and parts of the source code that are changed (new NPCs, room events, etc). The only problem with that would be that certain addons such as 178 or 409 would need to be modified.
I was thinking of a different route, instead we normally extract all mods over, but they wouldn't be officially 'supported' if they modified official files.
You could execute a loop for the amount of folders (or .zip files?) found in a mods/ directory, adding code at a certain position.
For example, you could add a loop to make rooms, fill rooms, add event, trigger event, and add items. Problem would be you'd have to create
and document a standard format that would work with the loop correctly.
Image

Re: [REQ] Graphical fog slider

#14
mrpeanut188 wrote:
InnocentSam wrote:Well if B3D was capable of JIT then we could make addons very easily; just have an addons folder and you'd have a folder for the addon, then subfolders for models, rooms, and parts of the source code that are changed (new NPCs, room events, etc). The only problem with that would be that certain addons such as 178 or 409 would need to be modified.
I was thinking of a different route, instead we normally extract all mods over, but they wouldn't be officially 'supported' if they modified official files.
You could execute a loop for the amount of folders (or .zip files?) found in a mods/ directory, adding code at a certain position.
For example, you could add a loop to make rooms, fill rooms, add event, trigger event, and add items. Problem would be you'd have to create
and document a standard format that would work with the loop correctly.
Wouldn't that still require you to either write your own scripting language and/or make it very restrictive in what you're able to do with it?

I honestly don't see any form of run-time compilation being a worthy investment of time here.
M-x dingus-mode

Re: [REQ] Graphical fog slider

#15
MonocleBios wrote:Wouldn't that still require you to either write your own scripting language and/or make it very restrictive in what you're able to do with it?
Yes, unless you can execute the code straight from Blitz3D, kind of like an execute_string() function, although if it doesn't exist you would have to create your own 'language'.

MonocleBios wrote:I honestly don't see any form of run-time compilation being a worthy investment of time here.
I pretty much agree, there aren't too many mods so doing cross-overs are the best solution at this point.
Image