The WIP Thread

If it's not ZDoom, it goes here.
User avatar
sirudoom
Posts: 78
Joined: Thu Sep 26, 2019 5:03 pm

Re: The WIP Thread

Post by sirudoom »

still working on this city. the blue lines are trains, the whit lines are above ground roads and the purple dots are skyscrapers.

i just got it from the guy. not bad
User avatar
Wereknight
Posts: 85
Joined: Mon May 06, 2019 12:06 am
Graphics Processor: nVidia with Vulkan support
Location: Void Eternal
Contact:

Re: The WIP Thread

Post by Wereknight »

Because YES.
Image
CeeJay
Posts: 1467
Joined: Sun Mar 14, 2010 2:52 am

Re: The WIP Thread

Post by CeeJay »

A collaborative EDGE project being developed by Lobo and myself.



Still very early in development, and we are in dire need of additional mappers. You can find us on Discord or contact through PM.
User avatar
zrrion the insect
Posts: 2432
Joined: Thu Jun 25, 2009 1:58 pm
Location: Time Station 1: Moon of Glendale

Re: The WIP Thread

Post by zrrion the insect »

Oh man has it been a while. IDK what shook off mappers block but I'm hoping it stays shaken off.

[imgur]https://i.imgur.com/Qs4MMdy[/imgur]

[imgur]https://i.imgur.com/eRhSXii[/imgur]

I'm honestly most proud of these leaves, they are stupid easy to implement and make the area look really nice for how simple they are.
User avatar
KynikossDragonn
Posts: 272
Joined: Sat Dec 12, 2020 10:59 am
Preferred Pronouns: He/Him
Operating System Version (Optional): Void Linux
Graphics Processor: Intel (Modern GZDoom)
Location: Independence, KS, USA
Contact:

Re: The WIP Thread

Post by KynikossDragonn »

zrrion the insect wrote:https://i.imgur.com/Qs4MMdy
That's a lot of purple goo!

Also it's good to hear you're still mapping. I liked your maps you made for Spooktober.
User avatar
Cardboard Marty
Posts: 1149
Joined: Sat Oct 23, 2004 8:29 am
Graphics Processor: nVidia with Vulkan support
Location: Robot Mountain
Contact:

Re: The WIP Thread

Post by Cardboard Marty »

POWER is stored in the hands. Fun little mechanic I put together today! Also, we have a cool itch.io page now for TSP! Wow!

User avatar
GreenLegacy
Posts: 186
Joined: Tue Jul 19, 2016 4:12 pm
Location: Republic Of Korea
Contact:

Re: The WIP Thread

Post by GreenLegacy »

The current development is being worked on in order of Intro Animation -> Menu Screen as I mentioned in the previous devlog.

[Intro Animation ]

Image

The intro animation is still in progress. It's a challenging procedure that takes a lot of time since only two people are animating. However, we are doing our best to finish it with great quality.

And we are currently working on the animation and other works at the same time because we can't keep dragging onto animation!

There are too many tasks to be done, so it won't be easy to work on the animation in the future. So for smooth development, we are planning to complete the animation in format of simple slideshow first. And then work on the animation after some level design is complete.

[Pause menu Refined]
Before After
The previous one was not really efficient for the game because it was based on the vanilla Doom's menu.

So we added the function to return to the main menu screen by responding differently on each screen, and the warning message of returning to the main menu during the game as well.

Although I kept posting devlogs all related to the graphics, there was a progress in another part. I will reveal more of the details in the devlog that will be uploaded later.

Thanks for reading! :D
User avatar
zrrion the insect
Posts: 2432
Joined: Thu Jun 25, 2009 1:58 pm
Location: Time Station 1: Moon of Glendale

Re: The WIP Thread

Post by zrrion the insect »

User avatar
Lagi
Posts: 679
Joined: Sat Jun 23, 2018 12:51 pm
Location: Thou shalt alter thy beliefs with new evidence

Re: The WIP Thread

Post by Lagi »

GreenLegacy wrote: [Intro Animation ]

Image
this is unreal! especially the blue character with this twist.
it looks like handdraw, but its a 3d model I suspect?
User avatar
GreenLegacy
Posts: 186
Joined: Tue Jul 19, 2016 4:12 pm
Location: Republic Of Korea
Contact:

Re: The WIP Thread

Post by GreenLegacy »

Lagi wrote: this is unreal! especially the blue character with this twist.
it looks like handdraw, but its a 3d model I suspect?
We used 3d model for animation and traced it.
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: The WIP Thread

Post by InsanityBringer »

Image
netcode


This is my first time ever doing netcode so it kinda sucks and there's a lot of bugs that need to be ironed out and I imagine if you try actually doing anything other than stare at each other it's going to crash but it's been kinda fun and I'm learning a lot like how as opposed to ipx you can't have a udp socket that sends and receives on the same port so now i have messy code to switch the client between "host" and "client" mode that may have issues with >2 players. all things that need testing...
dpJudas
 
 
Posts: 3164
Joined: Sat May 28, 2016 1:01 pm

Re: The WIP Thread

Post by dpJudas »

InsanityBringer wrote:I'm learning a lot like how as opposed to ipx you can't have a udp socket that sends and receives on the same port so now i have messy code to switch the client between "host" and "client" mode that may have issues with >2 players. all things that need testing...
I'm not sure what you mean by that. An UDP socket receives packets on the port it is bound on, but can send to any other address and port. As long as you aren't trying to run two Descent on the same computer that should work just fine.
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: The WIP Thread

Post by InsanityBringer »

What I was doing originally had both computers binding the same port, but all traffic got lost in the process, neither computer could communicate with each other. When I set it up so that joining players were given a different port for the player starting the netgame to send to, it seemed to start working for two players at least. There's still a lot of problems in the setup though, and I'm slowly trying to improve it all.

The Doom source release with its unix sockets code seems to have each node creating two sockets, a write one and a read one that's always bound to the same address, and it presumably worked, so I'm wondering if I'm missing something. I was experimenting with a two-socket setup too.

EDIT: With one socket and both computers always using the same port, it actually works now... I can start a game on a laptop, and join it on my PC. I can then leave the game on the PC, rejoin it, and so on, run through levels in anarchy, and it all seems to work. I'm really confused why it wasn't before. There's some weird things going on with my network where the laptop I'm using can't broadcast to my desktop, but they can communicate directly. This has been weird, man, and I'm learning a lot of weird things.
dpJudas
 
 
Posts: 3164
Joined: Sat May 28, 2016 1:01 pm

Re: The WIP Thread

Post by dpJudas »

I don't know why it didn't work before for you, or why Doom might have opted for using multiple UDP ports. But just to help clarify how UDP sockets works: an UDP socket is listening on a single port. Anything the socket sends will have that port as its source port. Anything the computer receives on that port will be received regardless of what the sender IP and port was. If you don't bind a listen port explicitly, the system will pick a free port number the first time you send a message from the socket.

In other words, when you call recvfrom on an UDP socket you'll get the information (IP address and port) about where the message was sent from. You can have multiple other peers sending to your socket where you can use their IP+port for looking up which peer it came from. And you can send messages back to each of those without needing a port for each, by supplying the IP+port of the destination when you call sendto.
User avatar
Cardboard Marty
Posts: 1149
Joined: Sat Oct 23, 2004 8:29 am
Graphics Processor: nVidia with Vulkan support
Location: Robot Mountain
Contact:

Re: The WIP Thread

Post by Cardboard Marty »



This week on The Space Pirate, we don't stop punching until they drop.
Post Reply

Return to “Off-Topic”