Hello fellow lövers
I'm publicly announcing what will (hopefully) become my next game: The Blueprints Machine (TBM).
TBM is a puzzle game, where each level can present you a totally different scenario/world/challenge, and to solve it, you have to manipulate certain aspects of that level to achieve the desired ending result. In order to do that, you'll get the help of blueprints, where various kinds of nodes allow you to do operations, calculations, and changes in the level.
TBM is also a learning experience. The game starts with a few basic nodes, but quickly will demand from you creativity and imagination to come up with easier ways to do things and re-utilize previous strategies.
I did a short video to show a bit the current working prototype where blueprints are designed. (make sure you view it in fullscreen)
The Blueprints Machine
The Blueprints Machine
Last edited by nuno on Wed Aug 12, 2015 11:34 am, edited 3 times in total.
- Positive07
- Party member
- Posts: 1014
- Joined: Sun Aug 12, 2012 4:34 pm
- Location: Argentina
Re: Introducing The Blueprints Machine
Wow looks pretty neat, but I'm really more interested in using it as an app for visual programming
Anyway, really cool and I'm looking forward to whatever game you can come up with with this awesome UI
Anyway, really cool and I'm looking forward to whatever game you can come up with with this awesome UI
for i, person in ipairs(everybody) do
[tab]if not person.obey then person:setObey(true) end
end
love.system.openURL(github.com/pablomayobre)
[tab]if not person.obey then person:setObey(true) end
end
love.system.openURL(github.com/pablomayobre)
Re: Introducing The Blueprints Machine
Looks neat. The sandbox mode looks like it'd be fun to mess around with.
Re: Introducing The Blueprints Machine
in a way, you will be doing visual programming, to solve the puzzlePositive07 wrote:Wow looks pretty neat, but I'm really more interested in using it as an app for visual programming
Anyway, really cool and I'm looking forward to whatever game you can come up with with this awesome UI
- qubodup
- Inner party member
- Posts: 775
- Joined: Sat Jun 21, 2008 9:21 pm
- Location: Berlin, Germany
- Contact:
Re: Introducing The Blueprints Machine
This looks very neat! I hope you have an android device, will test this on said device (e.g. with viewtopic.php?f=5&t=80513&p=186399 ) and find that you should totally target touchscreens with this
lg.newImage("cat.png") -- made possible by lg = love.graphics
-- Don't force fullscreen (it frustrates those who want to try your game real quick) -- Develop for 1280x720 (so people can make HD videos)
-- Don't force fullscreen (it frustrates those who want to try your game real quick) -- Develop for 1280x720 (so people can make HD videos)
Re: Introducing The Blueprints Machine
I think you should keep the debug function in the main game, I think they would be really useful for beginners. Also I recommend adding subtract and divide events, although they aren't actually necessary it would be much more user friendly.
Re: Introducing The Blueprints Machine
Yes, the debug nodes will be part of the game, otherwise some levels can be quite hard to completeDrakkahn wrote:I think you should keep the debug function in the main game, I think they would be really useful for beginners. Also I recommend adding subtract and divide events, although they aren't actually necessary it would be much more user friendly.
Keep in mind that education is also one of the game's purposes, so I want the player to actually understand the basic blocks of what he does. How many people can actually explain what division is? This is something that will be done at the beginning, like a tutorial level or something
- Ranguna259
- Party member
- Posts: 911
- Joined: Tue Jun 18, 2013 10:58 pm
- Location: I'm right next to you
Re: The Blueprints Machine
This reminds me of IGG's TIS 100 but this is way more beautiful. Great work.
Also, I'd love to see bezier curves instead of stright lines, like this: It'd look something like UE and Unity's blueprints:
O código:
Control points are set according to where the line start and where the line ends (first and last control points), the second control point's coordinates are the middle x position of the first and the last point and y position of the first point, the third point is the same x position of the second point and y position of the last point. (Vê a função love.update do código)
Also, I'd love to see bezier curves instead of stright lines, like this: It'd look something like UE and Unity's blueprints:
O código:
Code: Select all
function love.update(dt)
if bezier then
local x,y = love.mouse.getPosition()
local x1,y1 = bezier:getControlPoint(1)
bezier:setControlPoint(2,math.min(x,x1) + (math.max(x,x1) - math.min(x,x1))/2,y1)
bezier:setControlPoint(3,math.min(x,x1) + (math.max(x,x1) - math.min(x,x1))/2,y)
bezier:setControlPoint(4,x,y)
end
end
function love.draw()
if bezier then
love.graphics.line(bezier:render())
end
end
function love.mousepressed(x,y,k)
bezier = love.math.newBezierCurve({x,y,x,y,x,y,x,y})
end
function love.mousereleased(x,y,k)
bezier = nil
end
- Attachments
-
- bezier curve.love
- (566 Bytes) Downloaded 316 times
Re: The Blueprints Machine
hi!Ranguna259 wrote:This reminds me of IGG's TIS 100 but this is way more beautiful. Great work.
Also, I'd love to see bezier curves instead of stright lines, like this: It'd look something like UE and Unity's blueprints:
O código:Control points are set according to where the line start and where the line ends (first and last control points), the second control point's coordinates are the middle x position of the first and the last point and y position of the first point, the third point is the same x position of the second point and y position of the last point. (Vê a função love.update do código)Code: Select all
function love.update(dt) if bezier then local x,y = love.mouse.getPosition() local x1,y1 = bezier:getControlPoint(1) bezier:setControlPoint(2,math.min(x,x1) + (math.max(x,x1) - math.min(x,x1))/2,y1) bezier:setControlPoint(3,math.min(x,x1) + (math.max(x,x1) - math.min(x,x1))/2,y) bezier:setControlPoint(4,x,y) end end function love.draw() if bezier then love.graphics.line(bezier:render()) end end function love.mousepressed(x,y,k) bezier = love.math.newBezierCurve({x,y,x,y,x,y,x,y}) end function love.mousereleased(x,y,k) bezier = nil end
yes beziers are on my todo list.. but very low priority give the amount of important stuff I'm still missing
Who is online
Users browsing this forum: No registered users and 4 guests