Gamestudio Links
Zorro Links
Newest Posts
loading historical data 1st time
by AndrewAMD. 04/14/23 12:54
Trade at bar open
by juanex. 04/13/23 19:43
Bug in Highpass2 filter
by rki. 04/13/23 09:54
Adding Limit Orders For IB
by scatters. 04/11/23 16:16
FisherN
by rki. 04/11/23 08:38
AUM Magazine
Latest Screens
SHADOW (2014)
DEAD TASTE
Tactics of World War I
Hecknex World
Who's Online Now
0 registered members (), 1,012 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
rki, FranzIII, indonesiae, The_Judge, storrealba
18919 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
2D Game Studio #357594
02/07/11 20:14
02/07/11 20:14
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline OP
Senior Expert
Superku  Offline OP
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
As I am slowly losing interest in making it, I want to ask you if some of you are interested in a 2D game script + editor at all?

Here's what I have so far:



Demonstration:
http://www.youtube.com/watch?v=BYko8bblP_Y

Here's what a player code could look like (that's the one from the video):
Code:
{
	player2d = ent2d_create(100,120,100,NULL,bmp_frames_player);
	player2d.size_x = 32;
	player2d.size_y = 48;
	
	while(1) {
		
		// left/ right movement
		player2d.skill2 += ((key_d-key_a)*25-player2d.skill2)*0.3*time_step;
		
		// gravity
		ent2d_get_ground_distance(player2d);
		
		if(player2d.ground_distance > 5) {
			player2d.skill1 -= 8*time_step;
			player2d.skill1 = maxv(player2d.skill1,-50);
		}
		else { player2d.skill1 = key_s*55; } 	// jump with s
		
		ent2d_move(player2d,player2d.skill2*time_step,-player2d.skill1*time_step,0);
		
		// bounce of ceiling when jumping
		if(player2d.skill1 > 0 && !ent2d_move_result.y) { player2d.skill1 = 0; }
		
		// place camera
		offset_x = player2d.x+player2d.size_x-map_pnls_x2/2*tile_size;
		offset_y = player2d.y+player2d.size_y-map_pnls_y2/2*tile_size;
		
		wait(1);
	}
}



No matter how big your level is, the code does not create more panels than could fit onto the screen simultaneously.

Are you interested? If so, what should be implemented?


EDIT: Current features can be seen in the video.

Last edited by Superku; 02/07/11 20:22.

"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Re: 2D Game Studio [Re: Superku] #357597
02/07/11 20:23
02/07/11 20:23
Joined: Mar 2006
Posts: 3,538
WA, Australia
J
JibbSmart Offline
Expert
JibbSmart  Offline
Expert
J

Joined: Mar 2006
Posts: 3,538
WA, Australia
Brilliant. That looks like a really cool tool! I'm afraid I can't see myself using it in the near future, but it looks really cool.

Jibb


Formerly known as JulzMighty.
I made KarBOOM!
Re: 2D Game Studio [Re: JibbSmart] #357641
02/07/11 23:09
02/07/11 23:09
Joined: Sep 2003
Posts: 303
Germany
Clemens Offline
Senior Member
Clemens  Offline
Senior Member

Joined: Sep 2003
Posts: 303
Germany
Yeah, looks like a useful project! How does it work? With panels (realistic?) or entities?

I wonder how flexible it is for add-ons and expansions (for example adding not-quadrat forms like trees)?

Last edited by Clemens; 02/07/11 23:10.
Re: 2D Game Studio [Re: Clemens] #357654
02/07/11 23:42
02/07/11 23:42
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Quite Interesting laugh

Reminds me in the RPG Maker^^


Moderated by  adoado, checkbutton, mk_1, Perro 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1