Log In  

BBS > Superblog
Posts: All | Following    GIFs: All | Postcarts    Off-site: Accounts

Cart #32843 | 2016-11-30 | Code ▽ | Embed ▽ | No License
4

I made a clone of Flappy Bird for practice.

4
1 comment


This is part of the code I wrote to make a "foolproof" physics engine (meaning there's no way for an object to pass through a block by going too fast). It uses mget to check if a tile is there or not which should be pretty fast although maybe not the fastest. This is based on the blog post by Towerfall creator Matt. Although there's missing features like moving solids and stuff it's inspired by it.

If you haven't read the blog post about this you should, it's quite insightful!

http://mattmakesgames.tumblr.com/post/127890619821/towerfall-physics

Cart #32831 | 2016-11-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Controls:

arrows, o to jump normally, x to fly really fast upwards to show that you won't pass through things
at extreme speeds.

Feel free to use this code.

6
9 comments


I cannot see any .png files I've exported (if I type "dir").

Sometimes I can import the file if I state the filename (even though I can't see it), at other times it says there is a syntax error with the filename.

However, I can get around this problem by typing "export test.p8.png" instead.

Note: I'm running Pico-8 0.1.9B on a Mac (Sierra 10.12.1).

2 comments



Don't go in the grass

7
10 comments


Hi! I was about to share some work on a game by exporting to the html5 player but ran into an issue.

failed: 32k block not generated

I tried this on the chip, raspberry pi, and 32bit linux builds with the same result. I'm guessing it's because the compressed size is too high. Running info shows:

tokens: 6654/8192
program chars: 50401/65536
compressed: 17166/15360

I deleted nearly all of the comments already. Also the sprite sheet, map, and sfx are all blank. Any suggestions?

Side note: I use a lot of classes and the word "self" appears quite a bit in the code. If "local" isn't counted as a token can "self" also not be counted?

Thanks!

2
7 comments


As I am slowly returning to Pico-8 and I am tempted to make a Pico-8 3d printed console with CHIP, I had an idea.

How about attract mode for splore?

Just like arcades (and some console/computer games) in the past. If the machine was on and not used for a period of time, it would start a demo showcasing the game. Basically it was the game playing by itself (although it was often pre-recorded input by real players).

As Pico-8 is mostly a fantasy home console, we don't need anything too fancy. We can always let Pico-8 play some pre-recorded gifts. If we want to get to the nitty gritty, we can have a command that will record input and then play a cart by using this input.

I am not really sure if we really need this feature, but I think it would be a nice addition, especially when showcasing Pico-8.

1
0 comments


This is mostly done, I'd like some testing and feedback before I'd consider it complete. All thats really left is another song I need to make, barring any major bugs.

https://splixel.itch.io/picocross-rc1?secret=Jp2KRiuGT6wxAMWWTjLVDLPDpHM

It's a picross puzzle game, so the rules are exactly same as picross.

2
4 comments


Cart #32948 | 2016-12-03 | Code ▽ | Embed ▽ | No License
3

Controls: Left/Right arrow keys to walk, Up arrow key to jump. C key discards coins.

You can only carry six coins at a time, and as you collect more coins you become heavier and can't jump as high.
When your pockets are full, you can't jump at all!

Update 2.12.16a :

  • Fixed the screen warping to look less awkward.

Cart #32934 | 2016-12-03 | Code ▽ | Embed ▽ | No License
3

Update 2.12.16 :

  • Added some background tiles!
  • Added 4-way wrapping functionality: The player can pass through the top and bottom of the screen!
  • Disabled jumping when the player has maximum weight.

I'm not sure if I'll keep the screen wrapping mechanic as I want to maintain the risk of falling due to not being able to jump while over encumbered, but it was fun to implement either way! I'll toy with this some more and see how I feel about it.

In the next update I'm hoping to add another new little feature to this "game"...carrying a lot can be a disadvantage for upward movement, but what about [i]downward

[ Continue Reading.. ]

3
3 comments


Cart #32789 | 2016-11-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

now you can change size !

3
0 comments


Cart #32780 | 2016-11-27 | Code ▽ | Embed ▽ | No License
1

Very basic implementation of the classic game of Tic Tac Toe.

Plans:

  • Code cleanup
  • General polish
  • 2 controller support
  • Play against AI
1
1 comment



My first game on pico8 :)

0 comments


Cart #32769 | 2016-11-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

A game for the very young [at heart]. Inspired by something I saw while my kids were watching Peppa Pig and the first version was bashed out before the programme ended.

2
1 comment



1
1 comment


For my shmup project (bullet hell/danmaku), my first step was to work on the bullet/pattern system because it's related to the core of the gameplay (dodging bullets); and also because it's accountable to the beauty of the game.

First, I need limits. I decide to handle 128 bullets at a time. New bullets will replace the old one. From my perspective, is not a big deal. Players probably won't notice it. But if it happens, maybe it's because that bullet stays visible too long on the screen, turning arround following a circular path or simply moving too slowly. So, fuck that bullet.

I decide to create a table of bullet objects during the _init() proccess and reuse them instead of creating/deleting every time. It is called object pool

The process: every time I need to shoot a bullet, I select the next bullet object in the pool, If I reach the last one, I loop to the first. Simple.

To do that, I need:

  • a list of bullet objects,
  • an index for the next bullet index to use
  • and a number of max bullet:
bullets={}
bullets.next=1
bullets.len=128

[ Continue Reading.. ]

2
1 comment


Cart #32754 | 2016-11-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Hi! First off - I'm not in any ways a programmer, I'm hacking together bits and pieces of code, and adding/subtracting stuff from Jelpi. It's basically a reskin, with the enemies taken out, the map and sprites redrawn (eventually) and music rewritten (I'm a musician). I know there's a lot of redundant Jelpi code in there but I think I've deleted about as much as I can without breaking everything.

What I want to do is have a text box open at the bottom of the screen when the player presses X beside the horse. A line of text appears in a black box at the bottom of the screen, disappears and then another appears, etc, until the message is completed. The game is part of a Christmas present for my girlfriend who's in her final year of vet, and it's mad stressful for her.

I was thinking to use a sprite flag but I honestly have no idea how.. any help would be hugely appreciated!

2
3 comments


I was trying to achieve an effect that you could see a lot in oldschool demos. Usually it looked like a waving
flag made up of many tiny squares(sprites?). Other times it could be a big text scroller made up of tiny sprites.
I saw a similar effect in the Ad Astra demo recently, but that code was way beyond me.

i'm still very much a beginner so i'm unsure of how to go about creating an effect like that.
If anyone could push me in the right direction i would be super grateful. Any help would be appreciated!

6 comments


Cart #32741 | 2016-11-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

FINAL GAME IS HERE: https://www.lexaloffle.com/bbs/?tid=28132

In the game above, the character is gliding in zero-g. They can move left and right using little air jets on the side of the space suit (left and right arrow keys).

I am struggling to make a good sound for this that isn't too grating (you will hear the sound A LOT). I was hoping for a high-pitch hiss; like air escaping a ballon, but having nailed it yet (see above).

"TSSSsss.. TSSSssss..."

Any audio designers know how to achieve this sound?

6
7 comments


Cart #32744 | 2016-11-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


changed: rebalanced
changed: reflection algorithm
added: pause before start
added: 100 scores = 1 life

Cart #32730 | 2016-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


Based on Pico BreakOut by Bassintag. It made for training purposes.

2
1 comment


Hi,

I am trying to come up with a simple algorithm for filling an area of the screen a particular color.

I have a "path" in my game defined by the thin white lines shown above. Lines are represented with the following data structures:

function mkvec(x,y)
	local v=
	{
		x=x,
		y=y,

		getlength=function(self)
			return sqrt(self.x^2+self.y^2)
		end,

		getnorm=function(self)
			local l = self:getlength()
			return mkvec(self.x / l, self.y / l);
		end,
	}
	return v
end

----------------------------

function mkline(x1,y1,x2,y2)
	local l=
	{
		a=mkvec(x1,y1),
		b=mkvec(x2,y2),

		draw=function(l,col)
			line(l.a.x,l.a.y,l.b.x,l.b.y,col)
		end,

		drawnear=function(l,o,col)
			local lp=closestpointalongline(
				l.a,l.b,mkvec(o.x,o.y))
			circ(lp.x,lp.y,2,col)			
		end,

		closest=function(l,o)
			return closestpointalongline(
				l.a,l.b,mkvec(o.x,o.y))
		end,
	}

	return l
end

[ Continue Reading.. ]

1
7 comments


whenever i make a function, such as the one below, and try to run it, pico-8 almost always returns a syntax error, saying something along the lines of "<EOF> EXPECTED AT LINE 23", where line 23 is the last line of the last function in the code.
below shows the framework of the functions i usually code, "blah" obviously being substituted with code.

FUNCTION DOSTUFF()
IF BLAH THEN
BLAH BLAH BLAH
BLAH BLAH BLAH --this line is where an "<eof>" is usually expected
END
END
5 comments




Top    Load More Posts ->