This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#26 2009-10-07 17:08:51

Llennoccm7
Scratcher
Registered: 2008-01-20
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

I'll also help with sounds!


Go to PipeIineGames! The First Annual Scratch Awards!
http://img411.imageshack.us/img411/8658/llennoccm7.png

Offline

 

#27 2009-10-08 00:04:10

martianshark
Scratcher
Registered: 2008-03-24
Posts: 1000+

Re: Would you like to help create a 3D first person shooter in scratch?

I could find good music, sounds, or even voices. If you don't want me in sounds, just assign me to anything but art.

Last edited by martianshark (2009-10-08 00:05:56)


http://img.geocaching.com/stats/img.aspx?txt=martianshark&uid=e6cdc2c8-2476-4abd-9994-27f857396579&bg=1

Offline

 

#28 2009-10-12 10:32:58

Awsome-me
Scratcher
Registered: 2008-10-11
Posts: 59

Re: Would you like to help create a 3D first person shooter in scratch?

I'd help, but I like doing different kinds of FPS engines. Check a few out, they're completely mine: http://scratch.mit.edu/projects/Awsome-me/628638  that's my raycasting try. Here's another one: http://scratch.mit.edu/projects/Awsome-me/562546 Finally, here's one that'd be good for an RPG: http://scratch.mit.edu/projects/Awsome-me/584865


Check out my awsome stuff at http://scratch.mit.edu/users/Awsome-me
I've even got youtube: http://www.youtube.com/user/LegoPatapon

Offline

 

#29 2009-10-12 18:56:28

Dracospark3
Scratcher
Registered: 2009-07-29
Posts: 2

Re: Would you like to help create a 3D first person shooter in scratch?

RHY3756547 wrote:

Hey - Can I help? I can do advanced graphics with fireworks, blender and I can also code alrightish.  smile

Can you teach me how to script blender I have the program too.

Offline

 

#30 2009-10-20 04:13:44

mattenator
Scratcher
Registered: 2009-07-20
Posts: 27

Re: Would you like to help create a 3D first person shooter in scratch?

i am good at objects like pick ups and guns escpecially first person gun sprites

Offline

 

#31 2009-10-20 08:44:42

justtestingstickman
Scratcher
Registered: 2009-07-04
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

RHY3756547 wrote:

Hey - Can I help? I can do advanced graphics with fireworks, blender and I can also code alrightish.  smile

alrightish? 0_o
Oh wait this is scratch... Those who are alrightish at code are actually awesome by scratch standards... 3D fps needs 2 love its before starting work. I'll add you to characters and programming.


http://img509.imageshack.us/img509/2126/smalladvert.pnghttp://img175.imageshack.us/img175/8867/advertisementfor3sprite.pnghttp://img696.imageshack.us/img696/6061/failc.png
This signature has too many lines.

Offline

 

#32 2009-10-20 08:49:08

justtestingstickman
Scratcher
Registered: 2009-07-04
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

mattenator wrote:

i am good at objects like pick ups and guns escpecially first person gun sprites

Then we need you. Definitely.


http://img509.imageshack.us/img509/2126/smalladvert.pnghttp://img175.imageshack.us/img175/8867/advertisementfor3sprite.pnghttp://img696.imageshack.us/img696/6061/failc.png
This signature has too many lines.

Offline

 

#33 2009-10-20 09:01:09

08jackt
Scratcher
Registered: 2007-09-12
Posts: 1000+

Re: Would you like to help create a 3D first person shooter in scratch?

..good luck  smile


http://i39.tinypic.com/jgtswi.png

Offline

 

#34 2009-10-20 11:54:26

technoguyx
Scratcher
Registered: 2008-10-18
Posts: 1000+

Re: Would you like to help create a 3D first person shooter in scratch?

Hey, justtestingstickman, I can't do the characters and levels anymore since my computer broke and I'm using an old notebook with Win2K right now. Win2K doesn't support ROBLOX, and that's the program I used for my 3D stuff. But I can still test and program a bit. Comment on my projects if you ever need me.  smile


http://getgnulinux.org/links/en/linuxliberated_4_78x116.png

Offline

 

#35 2009-10-21 11:55:14

AddZero
Scratcher
Registered: 2007-08-11
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

I believe a realtime first person, explorable 3d environment IS possible in Scratch.  It just takes a *TON* of work to figure out and create. s65 http://scratch.mit.edu/users/S65 and others have made good progress.

Solid and texture surfaces are not practical in Scratch, but wireframe art is.
Some of my projects explore rending of wireframe 3d objects.  You can use these as a starting point in your projects.

3d environments are made easier by just positioning and resizing sprites, and not worrying about trying to draw walls and shapes.  See s65's SpRiTeD 3D Projection Engine: http://scratch.mit.edu/forums/viewtopic.php?id=6033  Another good approach is to use prerendered backgrounds, and just change as needed.  But this is limited, as you need a ton of art to do much.

But like I said I think wireframe 3d environments are possible:
A challenge is that lines that run off the screen are not projected where they should,
(Try zooming into my 3d desk project for an example. http://scratch.mit.edu/projects/AddZero/347789 ) so walls become deformed.  I started working on a solution here: http://scratch.mit.edu/projects/AddOne/564258
Also this can be used to hide walls that are behind other walls.
It is very important the the renderer only draws walls that are visible, otherwise in will waste allot time drawing walls off in the distance, that should be hidden.  This very important if you want large environments,.

I think the DOOM (one of the first '3d' games that ran on slow computers) 3d engine is a good design to pattern off of.  Maps were 2d vector sectors, joined together.  The engine projected just the walls that were necessary, hidden walls across the level were not rendered, just the ones visible to the player.  They used a technique called raycasting to render the walls.  s65 attempted this with a Wolfenstine (one of the first fps that has even lower computer requirements.) like engine:  But solid rendering is not practical in scratch. 
Instead, I'd just render the outlines of the walls.  The map structure can be similar to DOOM, a tree or web like data structure can be used to tell what sectors are connected to what.  I explored the tree structure idea some here: http://scratch.mit.edu/projects/AddZero/346118  A similar technique could be used to store the map information into one list that can be read quickly.

I think it would render faster if the engine know what sectors were visible from the current sector without raycasting.  So this can be figure out beforehand for each sectore and stored in another list.

Well. I rambled allot.  I hope this was helpful.  Goodluck.  I may be able to help further if you have questions.

Last edited by AddZero (2009-10-21 12:04:45)


http://scratch.mit.edu/static/icons/buddy/524717_med.png?t=2010-06-15+09%3A48%3A36

Offline

 

#36 2009-10-21 15:35:07

AriArk
Scratcher
Registered: 2008-01-06
Posts: 25

Re: Would you like to help create a 3D first person shooter in scratch?

i will be a character designer

Offline

 

#37 2009-10-23 18:54:54

mattenator
Scratcher
Registered: 2009-07-20
Posts: 27

Re: Would you like to help create a 3D first person shooter in scratch?

3D engine http://scratch.mit.edu/projects/mattenator/729293 what do u think?

Offline

 

#38 2009-10-24 05:34:49

juststickman
Scratcher
Registered: 2009-05-31
Posts: 1000+

Re: Would you like to help create a 3D first person shooter in scratch?

I accidentally put fps when it was meant to be a rail with pre-rendered scenery. If you did not know this, you did not read the entire first post. Tell me now if you want to withdraw and go do something else because of this.


http://is.gd/iBQi2 Add grob to your sig and help with world dominiation!http://is.gd/iBQ9Q                                                             Hey guys, we're seriously naming our team bob?

Offline

 

#39 2009-10-24 09:43:55

justtestingstickman
Scratcher
Registered: 2009-07-04
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

This thread is only for recruitment.
Here are the other ones:
character stuff
area stuff


http://img509.imageshack.us/img509/2126/smalladvert.pnghttp://img175.imageshack.us/img175/8867/advertisementfor3sprite.pnghttp://img696.imageshack.us/img696/6061/failc.png
This signature has too many lines.

Offline

 

#40 2009-10-24 18:46:31

Llennoccm7
Scratcher
Registered: 2008-01-20
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

Sounds
WinRAR
I got these from Left 4 Dead.


Go to PipeIineGames! The First Annual Scratch Awards!
http://img411.imageshack.us/img411/8658/llennoccm7.png

Offline

 

#41 2009-10-25 11:23:26

Greatdane
Scratcher
Registered: 2007-06-05
Posts: 1000+

Re: Would you like to help create a 3D first person shooter in scratch?

I built a 3D engine
It may not be complete(yet, at least) but is it enough for me to sign up?  smile

Last edited by Greatdane (2009-10-25 11:24:18)


The future belongs to those who believe in the beauty of their dreams.
        ~ Eleanor Roosevelt

Offline

 

#42 2009-10-29 20:20:36

Awsome-me
Scratcher
Registered: 2008-10-11
Posts: 59

Re: Would you like to help create a 3D first person shooter in scratch?

I can give you levels. Here's one that I made: http://scratch.mit.edu/projects/Awsome-me/737983 Please look at it, and please tell me if you want more levels. I use sketchup.


Check out my awsome stuff at http://scratch.mit.edu/users/Awsome-me
I've even got youtube: http://www.youtube.com/user/LegoPatapon

Offline

 

#43 2009-10-31 05:35:37

justtestingstickman
Scratcher
Registered: 2009-07-04
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

Greatdane wrote:

I built a 3D engine
It may not be complete(yet, at least) but is it enough for me to sign up?  smile

You don't need any requirements to sign up! All that matters is that you can help in some way, from a simple character idea to the game engine!


http://img509.imageshack.us/img509/2126/smalladvert.pnghttp://img175.imageshack.us/img175/8867/advertisementfor3sprite.pnghttp://img696.imageshack.us/img696/6061/failc.png
This signature has too many lines.

Offline

 

#44 2009-10-31 05:41:25

justtestingstickman
Scratcher
Registered: 2009-07-04
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

We're all starting now, so everyone GET OVER HERE.


http://img509.imageshack.us/img509/2126/smalladvert.pnghttp://img175.imageshack.us/img175/8867/advertisementfor3sprite.pnghttp://img696.imageshack.us/img696/6061/failc.png
This signature has too many lines.

Offline

 

#45 2009-11-10 10:15:45

Greatdane
Scratcher
Registered: 2007-06-05
Posts: 1000+

Re: Would you like to help create a 3D first person shooter in scratch?

I guess I could code some part of the game.


The future belongs to those who believe in the beauty of their dreams.
        ~ Eleanor Roosevelt

Offline

 

#46 2009-12-31 12:46:00

justtestingstickman
Scratcher
Registered: 2009-07-04
Posts: 100+

Re: Would you like to help create a 3D first person shooter in scratch?

Hey guys, the project isn't cancelled... WHERE IS EVERYBODY?!?!

If everyone quits, I will cancel it though ^_^"


http://img509.imageshack.us/img509/2126/smalladvert.pnghttp://img175.imageshack.us/img175/8867/advertisementfor3sprite.pnghttp://img696.imageshack.us/img696/6061/failc.png
This signature has too many lines.

Offline

 

#47 2010-01-04 16:01:50

waveOSBeta
Scratcher
Registered: 2009-12-08
Posts: 1000+

Re: Would you like to help create a 3D first person shooter in scratch?

I'll make a logo! Just tell me the name of the game.


http://internetometer.com/image/10202.png]
New signature coming soon!  smile

Offline

 

#48 2010-04-13 18:59:04

cramaster
Scratcher
Registered: 2009-04-30
Posts: 2

Re: Would you like to help create a 3D first person shooter in scratch?

yeah use any of my gun sprites.  just give me credit.

Offline

 

#49 2010-04-15 07:34:59

MaxtheWeirdo
Scratcher
Registered: 2010-03-18
Posts: 500+

Re: Would you like to help create a 3D first person shooter in scratch?

I might want to join, although it seems that the coding is out of my depth. I could help in art or ideas.


My website. Hall Crawler My Awesome OS
It's just marketing, guys! Nothing sinister!

Offline

 

#50 2010-04-15 08:53:35

RacerZmanx1
Scratcher
Registered: 2009-01-01
Posts: 54

Re: Would you like to help create a 3D first person shooter in scratch?

You give me the characters and scene limitations, I'll give you a storyline.


Fight for what is good, fight against what is bad, and be as epic as the entire Pokemon series while doing so.

Offline

 

Board footer