The Still New What Did You Last Do Thread

If it's not ZDoom, it goes here.
User avatar
DoomRater
Posts: 8270
Joined: Wed Jul 28, 2004 8:21 am
Preferred Pronouns: He/Him
Location: WATR HQ
Contact:

Re: The New What Did You Last Do Thread

Post by DoomRater »

I'm tempted to find a picture of Dick Tracy to back that up. But Penny is more awesome.
User avatar
leileilol
Posts: 4449
Joined: Sun May 30, 2004 10:16 am
Preferred Pronouns: She/Her
Location: GNU/Hell

Re: The New What Did You Last Do Thread

Post by leileilol »

I've got your Dick pic right here
dick.jpg
User avatar
Captain J
 
 
Posts: 16891
Joined: Tue Oct 02, 2012 2:20 am
Location: An ancient Escape Shuttle(No longer active here anymore)
Contact:

Re: The New What Did You Last Do Thread

Post by Captain J »

Gez wrote:
Dancso wrote:1. Why is a watch filling the role of a phone
Image
Because we want to enjoy the video call while getting some serious information like, all the time?
User avatar
Jeimuzu73
Posts: 1667
Joined: Sun Jul 03, 2011 8:44 pm
Location: Dropping today in Station Square.

Re: The New What Did You Last Do Thread

Post by Jeimuzu73 »

Another BD devlog.
User avatar
Kinsie
Posts: 7402
Joined: Fri Oct 22, 2004 9:22 am
Graphics Processor: nVidia with Vulkan support
Location: MAP33
Contact:

Re: The New What Did You Last Do Thread

Post by Kinsie »

Jeimuzu73 wrote:Another BD devlog.
This is the "What Did You Last Do" thread. Not the "What Did Some Jagoff On The Internet Last Do" thread.
User avatar
Dynamo
Posts: 1044
Joined: Sat Jun 07, 2008 5:58 am
Location: Industrial District

Re: The New What Did You Last Do Thread

Post by Dynamo »

Most of the features showcased in that video look embarassingly bad... Only some of the props look decent, but they look completely out of place on iwad maps. Who on their right mind thought this was a good idea?
User avatar
DoomKrakken
Posts: 3489
Joined: Sun Oct 19, 2014 6:45 pm
Location: Plahnit Urff
Contact:

Re: The New What Did You Last Do Thread

Post by DoomKrakken »

I did... :D

I especially love the added jungle effects in Plutonia... definitely makes it look more realistic. And the rain... oh my goodness, the rain... it makes it into the one type of map that I would play. :D

I haven't played Plutonia yet... I'm thinking I might try it once the next version of Brutal Doom comes out. I hope there is a generic version for it, so I could play it with my mods...
User avatar
Dynamo
Posts: 1044
Joined: Sat Jun 07, 2008 5:58 am
Location: Industrial District

Re: The New What Did You Last Do Thread

Post by Dynamo »

Yes, a mappack known for its relentless chaingunner placement (not that that's a bad thing), now filled with trees right in front of the chaingunners who you can now no longer see while they're shooting at you. That definitely makes the map into something I would play compared to before... :roll: Oh well, to each their own I guess. Let's also not act like rain is something never seen before in doom maps, though...
Last edited by Dynamo on Tue Aug 08, 2017 8:53 am, edited 1 time in total.
User avatar
Kinsie
Posts: 7402
Joined: Fri Oct 22, 2004 9:22 am
Graphics Processor: nVidia with Vulkan support
Location: MAP33
Contact:

Re: The New What Did You Last Do Thread

Post by Kinsie »

DoomKrakken wrote:I especially love the added jungle effects in Plutonia...
DoomKrakken wrote:I haven't played Plutonia yet...
🤔
DoomKrakken wrote:I hope there is a generic version for it, so I could play it with my mods...
The whole way this effect is implemented makes it very specific to the IWAD levels. I've done some experiments on procedural visual geegaw generation, if you're curious.
User avatar
Major Cooke
Posts: 8215
Joined: Sun Jan 28, 2007 3:55 pm
Preferred Pronouns: He/Him
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia with Vulkan support
Location: GZBoomer Town
Contact:

Re: The New What Did You Last Do Thread

Post by Major Cooke »

I spent hours banging my head on my keyboard, trying to find out why something in Gamemaker 2 wasn't working despite it clearly should... and then I found out that multiple assignments like the following doesn't work.

Code: Select all

var1 = var2 = var3 = 4;
It all has to be done like this:

Code: Select all

var1 = 4;
var2 = 4;
var3 = 4;
So I reported it in the hopes that it'll be fixed.

But that right there just screams a land mine of many...
User avatar
Jaxxoon R
Posts: 772
Joined: Sun May 04, 2014 7:22 pm

Re: The New What Did You Last Do Thread

Post by Jaxxoon R »


Got SADX since I had some wallet pennies leftover from preordering Mania, applied some bugfix/Dreamcast visual mods, etc.
User avatar
DoomRater
Posts: 8270
Joined: Wed Jul 28, 2004 8:21 am
Preferred Pronouns: He/Him
Location: WATR HQ
Contact:

Re: The New What Did You Last Do Thread

Post by DoomRater »

Major Cooke wrote:I spent hours banging my head on my keyboard, trying to find out why something in Gamemaker 2 wasn't working despite it clearly should... and then I found out that multiple assignments like the following doesn't work.

Code: Select all

var1 = var2 = var3 = 4;
It all has to be done like this:

Code: Select all

var1 = 4;
var2 = 4;
var3 = 4;
I wasn't aware there were languages where this was valid let alone recommended even if it can be done.
User avatar
Nash
 
 
Posts: 17503
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia
Contact:

Re: The New What Did You Last Do Thread

Post by Nash »

DoomRater wrote: I wasn't aware there were languages where this was valid let alone recommended even if it can be done.
It's done alot in (G)ZDoom... C++ allows this. I think C does too (?). ZScript and ACS allows it too, as I remember the latter being something I used to do a lot even back in the day.
Gez
 
 
Posts: 17946
Joined: Fri Jul 06, 2007 3:22 pm

Re: The New What Did You Last Do Thread

Post by Gez »

There's the C paradigm that (nearly) every expression returns a value. x = y sets x to y, and then returns y, so you can chain assignments because if you do x = y = z, it starts by processing y = z, returns z, and so it then processes x = z.

There are some excessive stuff you can do because of that, at least in C++. (x=y)=z is legit, but also really wrong. See this.
User avatar
Hellsmith1
Posts: 913
Joined: Sat Jan 17, 2015 12:17 am
Location: Jasper county Indiana
Contact:

Re: The New What Did You Last Do Thread

Post by Hellsmith1 »

I heard that a lot of people are going to see the total eclipse of the sun on Monday the 21st of August. I'll be going down south to see it for myself because its right below where my grandmother lives at in Illinois and this happens every 38 years, so this well be my 1st time seeing it.
Post Reply

Return to “Off-Topic”