Samplay - Pulp game devlog journey

Hi every one just wanna have a fresh start an create a game vlog of my progress in my pulp projects. You can find some of my realisation on itch.io My games

and here my old post on this forum about some of my pulp realisation :

I just start a new project where your a guy who gonna sluther some mob ! To kept being motivate i thought of start this game devlog that would be use for other projects also

Progress report 1 : 28-29 March 2024 : Fresh start.
Thought a lot of work i didn't have much time to get new game since Pulpmin release in early January.
Pulpmin trailer

That was 2 levels (over 9 tresor to find) of the 4 level i wanted to do, the next one would have be next with V1.1 and V1.2 but had much going on for doing this with my planification. Darn over 3month pass and i didn't have time to do it...

I need a fresh new start and kept be motivate on it !

Reuse and mixing ideas
I had some idea of reusing to of my previous game gameplay and growing on it..
Centipulp
And
Ski play

Centipulp and Skiplay would be surely use for inspiration for this new game.

Multi tiles player
progress1
Here's what i begin from.
A guy who have a hat, and weapon on his arms.
Each of is a tile link to the hero.

on enter do
	leftObject = "gun"
	rightObject = "bomb"
	topObject = "hat"
end

each of will be move in the update function depending of the direction

on update do
      ...
    /////code before for blocking solide black tile left and right///

    ///code for moving multitile, and remove it
    playerX = event.x
	playerY = event.y
	
	objy = playerY
	objy--
	
	tell playerX,objy to
		swap topObject
	end
	
	objx = playerX
	objx--
	
	tell objx,playerY to
		swap leftObject
		if event.dx==-1 then
			if blockedSolid==1 then
				frame 1
			end
		end
	end
	
	objx += 2
	
	tell objx,playerY to
		swap rightObject
		if event.dx==1 then
			if blockedSolid==1 then
				frame 1
			end
		end
	end
	
	
	objx--
	
	// clean old objects
	// localise old pos
	objx -= event.dx
	
	// remove old top
	tell objx,objy to
		swap white
	end
	
	objx--
	
	solidis = solid objx,playerY
	if solidis==0 then
		tell objx,playerY to
			swap white
		end
	end
	
	objx += 2
	solidis = solid objx,playerY
	
	if solidis==0 then
		tell objx,playerY to
			swap white
		end
	end

end

I didn't quite refactor yet... but for optimal performence you need to calculate where you tile are to remove it when it move (emit apply to every tile each time so i prefer to use it the less possible)

For the rest it's a shooter, but basically i think of separate it in several room where you will have to slaughter every mob...

But there is much to do yet.
Happy to have shared this start :smiley:

3 Likes

Progress report 2: 30 March 2024 : Exchange of fire and counting .
update2

Added life gestion, enemy shooting, enemy counting on the screen and a bouncing enemy.

To simulate the player hit box you have to kept track of player x and y coordinate every time it move. Then it could be compare from other tile. If anyone have another way to kept track from other tile player coordinate i'm surely interested

UI element like number of enemy is use as tile not label. Label is always use at draw from player and draw is call every frame. So i had to get 1 to 99 in one tile that work like a counter.
Score perhaps is a label because it surely could get very high score

Finally i try on device, and it seem working ok delta somebug from outbound with negative life of player for example.

Progress report 3: 31 March : New enemies and autonomous tiles

newopponent
Today i had a bunch of new enemy : moving blobs, teleporting wizard, diagonal shooter, other shooting a solidify able shoot.

All of those tile are possible to get to be copy and have autonomous behaviour.
For example here a multiple wizard fight :
wizardandchangelevel

As you can see when you kill all the enemy in the screen you got to a new level !

I'm thinking of new enemy
Had boss, have a good progress in the difficulty, i think the game calibration will be hard
Object system
Score Bonus system and a lot of stuff..

Had a second weapon that would be consumizing energize.
Thinking link that to cranking effort...

about programming it was quite challenging to have autonomous tile not been mixing with other tile from same type...

It's running good on device also for now

Progress report 4: 1 April : Bomb & Boss

I started to really want to see what could be the bomb wear by the player would be today : so i create another projectile land by the hero : a bomb.
It get sticky and explode after time in the four direction.
I also had new bouncing left and right enemy that can shoot front and diagonal shoot

newadded

I also had my first boss fight that is a grander tile and a mix of all the other shoot with several life for destroy it.
Reuse of script (with some tuning) and also use mimic function can get time..
I use the room script for initiate the boss life. as you can see the counter logo life boss is different than enemy counter logo
boss1

Also i have a die animation and a restart with score erase and life get back to start number(would have to make a highscore on screen or somewhere)

I can see more use of the bomb for new enemy and other stuff.
I definitely want to get crank usage for powering the second weapon (B-weapon) like bomb..

and so i can thing the game structure would be 10 level (one is boss) structure for several zone...

Progress report 5: 6 April 2024 : Feeling of bug and begin of the second zone

The last few day was pretty busy so i advance more slower than between the last progress report. Firstly since i remark that some crash could happen on device and i'm not quite sure what is it.
It's sometime an E0 Playdate Error e0 - Playdate Help and other time an update fonction saying the crash is due to a update at around line 3000 ... i'm not sure what it could mean..

One thing I thought was counting the moving tile per frame and shift the action to them next frame
It could release the console, i would have to implem it but i'm not quite sure yet.

New enemies for the second zone
benchofnewguy

Had a bunch of new enemy and new bullets : enemy bomb and a directional bullet

The directional bullet are link to the direction of the new enemy "arrow guy" and it stop to exist when it touch the player for now.
There is also new enemy that could mirroring your bullet when they are touch in there other frame
there is several different mirroring enemies that have different rithm of changing frame and shotting or not abilities.

I gonna looking for a way to differentiate zone, could be in screen or a mention of the zone and level in the ui...

I had some music and sound sketching for testing while dev . As i like music and sound creation so much it must be for me a little part of my creation process :slight_smile:

Progress report 6: 7 April 2024 : Mine and background tile

Like i said i wanted to find a way to have a background tile for differentiate the level.
So i had a global variable BackGroundTile that is call instead of all swap white as swap backGroundTile
This variable is setup with the name of the tile in the room script.

I added also mine that when shoot are activate as bomb and rock that only been affect by explosion.
Those "object" and the new enemy that i show i progress report would be a lot in the second zone (level 11-20)

mineExplode

Extra: I think found why had E0 error on device : sometime when a moving enemy is cercle it was calling recursively moving function directly so i had a wait surround it instead. The E0 was declare after a bit of game freezing so should be the recursive call..

Now there is sometime error unexpected in play and it's very random crash
It could be in any room at time... :
Update error: ?: -1: attempt to perform arithmetic on a nil value
stack traceback:
?: in upvalue '?'
?: in function <?:3743>

Progress report 7: 14April 2024 : the random crash investigation and optimisation

This week i did some investigation around this crash, it was very bothering me.
Until today i didn't find a begin of solution for this :

Update error: ?: -1: attempt to perform arithmetic on a nil value
stack traceback:
?: in upvalue '?'
?: in function <?:3743>

Firstly i was thinking it was only on when i try on the device...
and that was link to the number of sprite on screen moving because of the number of variable i use, for some randomize calculation for example i was doing like :

randres = 1
rand = random 1,10
randres /= rand

But i found a good surprise, random x,y is considerate as a number so i can do it in one variable !

randres = 1
randres /= random 1,10

So optimize all my random calcule for each tile which is quite existing in my code
One variable away of all the tile is still a good progress.

But it didn't get the bug out !

After i rework my shoot, that was using emit each time player try to shoot a new bullet (a new bullet to be shoot need to have no more bullet in screen)
So for someone clicking a lot on A button it could use some cpu (remember that an emit function is calling each tile of the screen !)

So i prefer use logical and calculate the max bullet time on screen (from shoot to the overside black wall) until a new bullet could be use.

That didn't work out.

Finally after some time of playing i notice it was most of the time when stuff where gonna explose on screen :
Sometime in my code frame where over the maxframe existing of my tile because explosion could have a recall from a wait base on the all tile...
So i had a lot of prevent when tile is now switching on explode to stop in the code by a done in the script in the case...

The crash happen less on less each time i prevent more now the game is playing well in fps (around 20) with the new optimization... like in this example on device it's 20fps
full
screen capture from device with fps counter

UIcrossAndLotStuffScreen

You can also see i implement a d-pad on the screen :
My playdate device A button is less clicky than before :smiling_face_with_tear: so i add down to shoot as well...

My A button of my last playdate had die so i send to Panic that replace it , it was quite fast ! maybe i'll need to do it again with this one but for now i just have to press it a little more than the useall so it's ok.

here's a in game sound video of zone 2 :

Quite happy with the music of this zone 2..
you can here in game sound, second zone music, game over and little of the basic loop of the first music of the game at the end

I want to stabilize the game as much as i can and continue doing more new level and a second boss soon enought

Playjam 5 Report : 20-22 April 2024 : Tiles Memory

Let's go for report what i done for the fifth playjam : the theme was "You forget something"

I always submit something for the playjam since the first edition.I love to switch between lua and pulp between each jam. This time it's Pulp !

The theme was very open but the idea i thought was a kind of very simple picross memory.

It kind making thing of a very basic drawing tools :
playjamgif

At first you have a draw in font you then you have to draw it again with black or white tiles.

One of the pulp script interesting stuff i did was using as an indirection tell on event.player in a room script:
I had an issue of checking which room from the room i were because of a wait.
I had a global variable I used

On a room script

wait 0.1 then
  if event.room == "differentRoom" then
       change=1
  end
end

to make it work :

wait 0.1 then
  tell event.player to
     if event.room == "differentRoom" then
        changed=1
    end
  end
end

The other interesting stuff i did is how to check the copy of the drawing is ok.
I make loop for checking each tile in the zone of drawing as 1 or 0 in a string then a compare the this win string at the submission string of the copy by apply the same string construct.

if submissionString == winString then
   say "you win"
end

I created 10 level and 10 "animation" when you win. when you did the 10 level you'll get a surprise mode.

The link is for now public !.

It was a good challenge to get it work fully like I wanted.

Progress report 8: 25 April 2024 : Frame, background and transparency

I wanted for the new next zone to be more in the black tone in the background
Also wanted to stylish a bit the frame of the field. So added a frame around the game space.

A problem get into me for the black background to still be check under the sprite...

notransparency

So remembered about the gum from player sprite and that someone said on the forum you could get any tile transparent if you want by go back from player tile mode to tile
But find the trad of, you have to get your tile code paste otherwise it lost!


Then

and go back to the old mode

Don't forget to re add mode script of your tile and paste your code then.

Now the monster is transparent :
transparencyStamp

Perhaps as you could see transparent bomb and gun stamp the old player position and create a player doopleganger artefact :smiling_face_with_tear:

We should find something.. If pulp stamp frame by frame we could call before drawing the object around the player the background..

On tile code "gun"

on enter do
	tell event.x,event.y to
		swap backgroundT
		wait 0 then
			swap "gun"
		end
	end
end

Then as a trade of there is a blinking of one frame on the gun new position
transparencyeffect

This stamp effect on moving transparent tile as a frame moving could let artefact then so further test need to be done on all the tile. Yet for not moving tile transparency is a good feature..
So this tradeof might exist but is ok.

I also use the jam save system of level advancing for this game : if it crash (still this mysterious Error: ?: in function <?:3743>) that exist on the long run. might be a crash from moving tile between room level.. but not sure.

Progress report 9: 28 April 2024 : Dice, order and emit

Created a second boss that resist to your shot until you get shot in order dice...
boss2gif

Perhaps, it could looking simple dice in order in screen but i could have a dead end if your not order:

screenshot (37)
screenshot (38)
screenshot (40)

Your block in front of 4 in front of three...

I remark emit start from
0,0 -to-> 24,0
---- vv TO vv---
24,0 ---> 24,14

So by emit on dice and order you could order them left to right to bottom so it's always accessible from the shot, no number front of a lower one.
It less chaotic as it but it's not create softlock in the game , even if i had a time reappair dice...
As rarely it arrive it could be very frustratic i think...

noorder
without order


diceordergif
with order

1 Like

Progress report 10: 13/05/2024 : Name Found? and progress and about code enter function**

Since the playjam i did have not done a lot of developping in this game, but still some progress

for this game but started to feel bad because the first name of the project was at time : oneWeekProjectMarch24 ...
So yeah, was time to change lol.

So i really wanted to still have Mobs into the name ut the main character still didn't have name

Recently one name of game that had my intension is :

Mullet Mad Jack

disgress about this Mullet Mad Jack

I saw a show speak about it like a boomer shooter game type but the game himself is about new generation addict of social network and human more and more loving fast extreme violente.
I don't try it yet but love the vibe vaporware, 80, and hotline miami i feel about it.

Love the name and didn't now before having the naming but is quite about the same think :
Shoot'em Up (like the game genre)

So here it is with a little screen size animation (in game with pulp) with the main character running :

Show the name !

gamenameannounce
Bullet Shoot Chronicle : Crazy Mobs Mania

so main character is call Bullet Shoot and he get to rampage all those crazy mobs that shoot at him by his shooting at em .

So also in those time I reuse the principle of dice to create barrier where you need to have a pair of dice.
and implementing new enemy like one boucing and moving diagonally :
mulletgif

About code
New update for less crash of type
?: in upvalue '?'
?: in function <?:3743>

In my experience in pulp : When enter is use on a same tile use at screen, it can overload somehow more pulp then subfunction
i could use a sub function fom call that init differently the tile :

*In a tile i use more than one tile in room*
on enter do
   call "init"
end

on init do
   v=random 1,2
// Do code stuff
end

seem more effencient when call in same tile that is on the screen than

on enter do

   v=random 1,2

end

No proof other than less crash of l.3743
It now happend only between both and new zone i'm not sure why yet :smiling_face_with_tear:

So yes, little advancing but big step on naming and that would but usefull for the story of the game : i want to had animation between fraction of level/boss/new zone if i could.

Quite want to have more big animation on my pulp game since the tiles memoy game from the playjam

What do you think of the game name I found recently (please check "summary")

  • Name is fine for me. thx for had share the naming processus !
  • Could be better but it's ok tier.
  • I don't like it..
0 voters

Otherwise..
I have a mastodon page if that i need to revive^^:

Progress report 11: 22/07/2024 : Bullet shoot chronicle solidify

More than two month since no update, here's a little one about some developing.
It's the 0.0.1 version.

You can see it in this GIF

  • Intro Update
  • Start game screen with choosing level ability
  • UI game updated with name of room (level) where you are
  • Hat selector working visually
  • Up for new capacity
    (event.dy and event.dx depend of goto so as bulletshoot moving only with goto in x axes y is not update , i had to do some verification from tile representing the directional cross pad ,use wait and simulate player sprite with a normal sprite as rending the player as a transparent tile...) :playdate_goofy:
    Down on the cross for shooting (as A button in playdate have been pretty sensitif in intense play so i adapt the shooting as A and down for shooting)
  • Bonus level with bonus (point life...)
  • Topscore (saving best score)

No in gif

  • Some intervention from Bullet Shoot and boss (dialog) for more context : Bullet Shoot intervade because mobs are making trouble to people from his place.
  • 30 level (more to come?)
  • running well in device :+1: (no more crash : function calling recursively have to stop otherwise it continuing in other room and could get some crash)
  • Boss update behaviour for less bug and more challenge from them
  • 30 level = boss (final) for the moment but it could change
  • More music
  • Saving more variable and stuff in code
  • presentation of all enemy animation as the end screen after level 30

Todo :

  • Find some crash that could make crashing the game
  • Find not crashing bug
  • Making hat capacity and hat as reward for replayability that will impact selection system of the hat => Challenge rewarding
  • Up capacity of each hat (with percent gauge)
  • Option room
  • transparency on all tile

Nice to have: new bonus room, drop from enemy? Mini game, Collaborating stuff? race again time, Boss run...

Was kind of waiting my playdate back for continue and not so much time, i'm kind of happy this week was little more productif then others. :slightly_smiling_face:
BSCUpdate

1 Like

Pulp race progress report #1
pulprace

Been sometime i didn't push update here,
Bullet shoot chronicle have been release since.

In this early 2025, I want to share my try to create race game in pulp. We can say that pulp seem not a fit for that kind of game. So it should be interesting to try to create one.
Started this project in the first week of january.

To create a race we need to have :

  • a track
  • lap finish by a finish line
  • A vehicule
  • Direction to cross this finish line
  • At least one cpu to race against that is able to complete a lap

use of a tile perspective way of doing that rule and
that Pulpscript is really great to break Pulp basic functionnality.
gonna help much.

Top view of a track and for the moment just being
using frame rate of pulp (20 frame per second) i construct
first prototype of a square track.

Player movement : with the dpad making a stale direction while player moving
stoping by solid thing.

moving

example of track :

direction will be needed to track, one thing that is very usefull and
nice is that in a track there is a start and an end. they finish at the same point represented by the finishline.
We just sure we don't want to get back from the same direction.
We generally won't go back when you racing!

That was superusefull for tracking lap from the player and the
cpu.

Oh, let's talk about cpu, firstly i wanted to do some
tile tracking target in function of tile use by the cpu, but it was a lot of effort for complex track...

Then i decide to implement an angle advancing cpu that work in most of the case.
I didn't implemented yet a way to do all the track i created by the cpu but i have some idea but it would be for a next post.

One another interesting subject that i think i break is how to track position between cpu and you.

But first here's the first track :
trackExample

p variable you see is the position in the race, you can see i track it when i outrun the cpu or when the cpu pass you.

Here a concret way of see how i did that track.
Math formula :
Capture d’écran 2025-01-21 à 00.40.41

Activation depending of the distance , the triangle you see show the area checking if the player is in front of the cpu or not :playdate:

computationdistancial

But this way on device, i make to many computation to check
2 frame are lost
so i use repetition at all frame on front and back only over distance as you see 3 range at 3frame...
(the computation seeing by triangle is an animation played then swaped so it's just a projection, all the calcul are done at 1frame rate)

Other aspect are interesting but are not yet "cpu friendly yet" like the different tile make different speed within the track or teleport for breaking the trackfield

teleport
multiplespeed

there is also directional forced by tile, key that open door, hole that stop your run and hyperspeed tile that transport the player

tileplayroom

So what i want to do next is work other way for the cpu to do the race other then bouncing on tile.
More tracks
more use of mimic for the code
other cpu?
other challenge?
projectile?
use of crank?

4 Likes

This is the first time I can recall seeing a racing game made in Pulp, very cool!

3 Likes

Pulp race progress report #2 : Inspiration and cpu guidance in a lap

It's nice to try to create new genre of game. I love racing game as a GT7 afficianados and limitation can be very cool to try to tore pulp with pulpscript... That why i try to create one racing game.

Some source of inspiration
This game would be inspired by i thing :

  • micromachina (the upside view make me think of that game)
  • trickybille (physical game where you run a ball in a circus of obstacle)
  • and of course F-ZERO and MK from the bigN

I made the algorithm on the code for less duplication about cpu instead of in each race room in game script that is callable anywhere by tell event.game to,, so i won lot of code line in the json build. Plus all the code evol of the algorithm of move the cpu is apply directly after build for each race.

How guide the cpu in the race?
By the fact we use tile . the first implementation of the running cpu was by collision with solid tile continue to the next solid tile.
We have to turn it depend of the direction of the lap by clockwise or counterclockwise dependanding of the start direction of the lap...

Can work on track that the bounce make the race finishable by bouncing. it's not working everywhere.

bouncingStrat
(40second work in track1, after track2 bounce not make the track finishable)

Ok, it was kind of possible to change track to make it finishable by the
cpu but it was restrict the construct of the track and move of the player.
bouncingnotlarge

I remember that i did something with the distance for knowing the player was next to the cpu... so i make a guidance algorithm base on the same idea of projecting the sight of the cpu....so Distance guidance algorithm with score work like whenthe projection encounter a solid we stop the counter , we do that on all other direction. and retrieve the best score and go to this direction. we do malus on behind direction and on the finishlap for the direction where we find it.
Here's a representing of the score in the track show for guidance. Then it guide there until it's nearby depending of the narrowness

bestdirectionalgo
track simple 30s , track less simple working after (in the gif)

Perhaps, it not working for all track yet, for example when we have very narrow space.

algoblocked

In front or behind the cpu?
As i speak is the last report, to check the player is in front i use computation and check all the tile in front and behind (colonne) at each frame but i lost 2 frame
algocheck
I had a check for behind the cpu in the anti direction of where it go and it tilt in my head.
We can do way more simple then check if the player is at a precise tile: the algorithm is activate when the player is nearby...
So to know if the player is behind or in front when it activate
it just to check the player have when the dir is on x of the cpu , x coordinate inferior of the coordinate of cpu.

All the computional triangle show not existing anymore, the game is back to 20 fps :slight_smile: , at some song to know when it call or not. that nice to have find a simple implementation for that concept and very efficiant, the other way was not working at some position in plus of fps drop!

I just have this block on not large track because i don't recall function of guidance when it needed. i need to find a way to call it efficiently...

3 Likes

Pulp race progress report #3 : cpu guidance for very narrow space and parameterization

This week was about how to get to narrow space for the cpu but still have an global algorithm.. I have a lot of try to make it work it as best.

the main idea is to call bestdir function at the good time in plus of bestdir call front narrowness of the position of cpu (showed last post)

-1- cpu reacting to tile front changing

At first my idea was to have
3 to five tile in front of the cpu in memory at each step and
Call the best direction function at each time it happen.
Was working to go on but have many call in tracks where you have that plus a delay to kept work as the next step is in front of the cpu.
The cpu was overguiding himself afterward and start making looped trajectory within the track. I'm sure 20fps wasn't there also.

-2- Changing Distance on the cpu side

The other way would be to kept track of the cpu
distance at his side and changing at the changing value to call the bestDirection function

At it was for the first the cpu was overplay the bestDirection at each step when the distance of wall changed in other track, but was working for was thinking it would be better for the fps than the first idea

- 3 - Scoring update guidance for 1tile large entrance
If in a direction there is one tile between two solid tile (black) it's an enter.
I update the guidance score with this new principal (with a big bonus score for that) i do that in direction.

- 4 - solidity (or blacktile) changing at 3-dist side cpu step
The new probleme i had was how to activate that bestdir even at the good time.
base on the same idea then - 3 - but differently, if i create a 3large on both side dinaming remember of solidity at each step, i could score the depth number of an enter (If at a side we path solid to unsolid at a scoring to 3 (less if solid tile is uncounter) if the score is at least 2depth we can block the bestDir call, go to the best dir (with - 3 -) and enter to the tunnel

oktrajectory
for some map it's ok :
racingok

But i need to reparametrize some parameter within another map :
uptomychcall
Because before with another i had :
parameterwellparam

Or something like that...

- 5 - Tunnel mode activation and deactivation

We can use the bouncing strat with distant call of best dir for going out.
Bouncing strat is activate if at left and right - 4 - best score recorded is 1
(i kept track within this function a bestscore per direction, and compare all at the same time to get a besttotal 1-depth large as it's >0)

tunnelmod
(had counter room before race start :playdate_sunglasses:)

         if top1==1 then
				if top2==1 then
					modT = 1
				end
				if top3==1 then
					modT = 1
				end
				if top4==1 then
					modT = 1
				end
			end
			
			if top2==1 then
				if top3==1 then
					modT = 1
				end
				if top4==1 then
					modT = 1			
				end
			end
			if top3==1 then
				if top4==1 then	
					modT = 1
				end
			end
	Edit: that was wrong, here's why the gif where parameter is wrong is half true, the code should only be for tunnel case, so far more simple, if 2 opposite position is one we go to modT	

if topL==1 then
if topR==1 then
modT = 1
end
end

if topUp==1 then
if topDown==1 then
modT = 1
end
end

top1,2,3,4 are the score in the direction getted by bestdir, if it 1 when can activate tunnel mode (it's just remove the bestcall dir basic call in function of the narrowness

I made it parametrable for each room to choose how i want to the cpu use those idea in the room. of course - 1 - - 2 - that are no really use idea could help in other case (detect projectile maybe)..

New problem is that the framerate drop in some case and make it framedropping when it turn so i'll need to continue optimizing it for making it device fluid as much as possible. sure ofc all those implementation try make bad relica in the code. So by cleaning it i can start have better perf maybe. Of course i'll need to stabilise per level the parameters... would be perfect for next entry :playdate:

PS : code game and player versionning script within pulp web would be cool to have , i have to get code project duplicate for versionning or rename function by old for kept track all version , that can make the json louder by some ko or comment it with // but make the script longer so to kept track within pulp editor of what you want to do in the code it's not the best...

3 Likes

Pulp race progress report #4 : following player and long track
I didn't have successfull breakdown this week but started a new view mode and bigger track. It's interesting start but didn't have the time to get it really right...
I like to try this "post by week" timing about my advancement on this thread .

bigger tracks:

One side i didn't visite a lot in pulp/pulpscript was config.follow activate.
When config.follow=1 the player sprite is followed.

I wanted to create a longer track, so i need to have tile to do as an exit to change part of the track. One problem i still have is that we need to call update (a direction) to update at edge of track. Exit tile not working in my game not sure why so i implement edgeleft and edgeright track.

In this example track it's a 3 room size. So i have to activate each timer when enter, but still in first room activate only it other time we re-enter in this room (so conditionaly it's when the chrono is at 0 ) we start the initialize parameter the room otherwise only call the timer of the room

I also have a crop method to get feeling the track is bigger plus some kind of scrolling i guess. I had some inspiration from orks platformer to do that.

Still have to change the crop to access old one-track room.
I test config.follow value to get to know which part of the code will be call (one room area or bigger one with the follow option)
exampleofcropfollowing

Trouble update because of config.follow:

One big issue that make time to be resolve as part was the direction was changing a lot of time in the opposite direction. A long investigation start.

Firstly was trying to force the direction, but always have those some time i change the opposite direction i choose.
The only new parameter that changed was config.follow = 1
so i was sure it was link to that.
to recenter the sprite the screen have to get opposite direction.
This update is fire prioritly.

So i log update between the updateDirection (and have a Log variable to have some info at each step i want i the code
log="{log} my string"

the log variable is global, update is call quite a few time, so i need to get log on the passing update function each frame (can be few time), as i update is call at each 3frame (in white tile...)
I saw that update was call one time much so when i change direction
so i cont the direction changing , if we have 2 changing direction encounter we stop the last update because it's the config.follow offsetting the screen. (cpuupdate=2 in the log in the gif)
My code is not super clean but it work.

There is still some time direction update lonely but farless then before finding that last update call.

dirLog

Well,
So still have stuff to do on this new view code, (the changing room activation need to be call for now with an input direction...)

but it was a interesting deepdive in that config.follow when it's activate and start the feeling of how it work within pulp.. one issue i see that might be to complex to make a race on big track
As the cpu for long tracks can be hard as i would need to kept track outside off the room some time. and also recreate the good position of the cpu if we are in the some room after changed room of track...

4 Likes

Pulp race progress report #5 : Surprise, shooting and sight

This week i started a new feature: getting object. For now i only did one object that make you able to shoot.
I created target to explose, one other thing i did is moveable platform where the player stay.
I had changing view sight within track.
Also when you get an object the player is mark to know it have an object.

One interesting part was about make this shoot going over all tile that can be pass and make it back after (it can remind a reset topic in the forum)
For that i find the next tile and remember it before calling my shoot tile, with enter that move.and reuse this variable on the old position after.
It will only work for one shoot but the none solid tile are back on the field

One problem i have was when i stop my direction is at -1 , so my player don't move, but i wanted to base my shoot on that direction use by the player. I find another solution base on the sprite i use for the player (one by direction). That remove some bug i had with the shoot.

Would be interesting to had it to make the cpu freezing when shoot in a race. Other object idea have to be created to.

examplesShootLevel

Those idea would be for a part of more about enigma level then race level i guess. The changing view is interesting for the player get information on field.

That wasn't a big week progress but shooting work so i'm happy to have momemtum in my progress in the game. I don't have schedule for a release so i'm not afraid by a scoop creep but i want to implement bugless version before passing to next one.

2 Likes

Playjam7 : Micro Moonrock game

The theme of the jam was "moon", i guess start jam with no really big idea and no some much time so i needed something constructable quite fast.

"Head in moon" is exquivalent in some langage to "head in cloud".

The idea was to code no so much so i use the player and the exit to simulate the screen changing.
The construct idea for gameplay was inspired by one level of mario maker 2 where you use mario as a dungeon crawler https://www.youtube.com/watch?v=1MnfANL38Kg if you want more detail.

The idea was to no to much have pulpscript around in the game. Of course i had to for timer, maybe for the ufo 10 get microgame some algo for the appearence that is base and randomness of appearence when you are in a certain position (a certain room)

I wanted to use big tile sprite in room to make game, it could be comparable to a game and watch i guess with all the position existing (in room)

Microgame are quite basic , jump over something, get out the labyrinth which is kind of pulp native set just when you get the object you are transport in the overall

I use 2 over the 3 day with quite little time so my scope wasn't big and in those two day not so much time, and i wanted to make music and some sound for have more feeling over the play experimentation. so i'm quite happy how it turn. Of course i feel like it could have a lot of other mini game if i had more time.

Of course the micro game realisation is quite inspired by WarioWare
Here's a good overview of 4/5 microgame within the game.

4gameset

3 Likes