Algodoo
Download
What is it?
Learn it
Algobox
Forum
Browse
Search
Popular
Register
Upload
Rules
User list
Login:
Search:
Kilinich
2017/06/25 11:02:37
Very nice and simple!
Kilinich
2017/06/29 13:29:54
2 Xray: Adhesion 1000 is not necessary, 10 is enough. Just forget to change back from test.
Kilinich
2017/06/29 13:31:26
How much torque it would handle?
Kilinich
2017/07/05 21:54:40
Neat one!
How about mouse control?
Kilinich
2017/08/16 08:57:23
It's one of the greatest algodoo scenes.
Kilinich
2017/08/17 12:44:46
Very good one!
Yoo just forget to set follow object.
I manage to brake it down (wheels on top of body) /-)
Kilinich
2017/08/23 22:46:00
Well, 50m monster is kinda out of scale and I manage to broke it with reverse drive /-)))
Kilinich
2017/08/25 12:00:35
I've develop thyme script to solve that
//
// Best result is:
// Finished with 6 steps: 1->2 2->3 3->1 2->3 1->2 2->3
//
scene.my.cans := [[8,8],[5,0],[3,0]];
scene.my.maxLevel := 8;
scene.my.trans := (cFrom, cTo, cans, level, history) => {
level <= scene.my.maxLevel ? {
finish := (cans) => {cans(0)(1) == 4 || cans(1)(1) == 4};
setCan := (cans, can, val) => {
newCans := [];
for(3, (i) => {
i == can ? {newCans = newCans ++ [[cans(i)(0), val]]} : {newCans = newCans ++ [cans(i)]}
});
newCans
};
nextCans := cans;
a := cans(cTo)(0) - cans(cTo)(1);
cans(cFrom)(1) > a ? {
nextCans = setCan(nextCans, cTo, cans(cTo)(0));
nextCans = setCan(nextCans, cFrom, cans(cFrom)(1) - a)
}:{
nextCans = setCan(nextCans, cTo, cans(cTo)(1) + cans(cFrom)(1));
nextCans = setCan(nextCans, cFrom, 0)
};
finish(nextCans) ? {print("Finished with "+level+" steps: " + history)}:{
transfers := [[0,1],[1,0],[0,2],[2,0],[1,2],[2,1]];
for(6, (j) => {
transfers(j) == [cFrom, cTo] || transfers(j) == [cTo, cFrom] ? {}:{
nextCans(transfers(j)(0))(1) > 0 && (nextCans(transfers(j)(1))(0) > nextCans(transfers(j)(1))(1)) ? {
scene.my.trans(transfers(j)(0),transfers(j)(1), nextCans, level + 1, history + (transfers(j)(0)+1) + "->" + (transfers(j)(1)+1) +" ");
}:{}
}
})
}
}:{};
};
scene.my.solveAll := {
scene.my.trans(0, 1, scene.my.cans, 1, "1->2 ");
scene.my.trans(0, 2, scene.my.cans, 1, "1->3 ")
};
scene.my.solveAll;
Last edited at 2017/08/25 12:01:05 by Kilinich
Kilinich
2017/08/25 21:07:24
Well, there is a new challenge: to find more challenging challenge than 6 steps =) I find configuration with minimum 8-steps solution. The problem is it seems like a limit for algodoo 40 levels deep stack(
Last edited at 2017/08/25 21:17:54 by Kilinich
Kilinich
2017/08/26 15:19:28
Looks good enough to use!
BTW, rods could be simulated with spring (few over-squizzed with 0 force)
Last edited at 2017/08/26 15:20:47 by Kilinich
Kilinich
2017/08/26 15:24:49
By just removing "^0.5" you will get better performance and visual effect!
(e)=>{
s := ((vel(0)) ^ 2 + (vel(1)) ^ 2);
color = [2 * s, s / 2, 0.5 - s, 1]
}
Kilinich
2017/08/31 08:47:46
I need to be able change speed (brake and accel)
Kilinich
2017/09/22 14:43:05
I love this series! Great games!
Kilinich
2017/10/12 13:19:52
Too laggy
Kilinich
2017/10/15 12:19:11
Cheating but cool!
Kilinich
2017/10/22 20:24:01
Brilliant!
Kilinich
2017/11/01 22:17:56
Oh this is really good car!
Kilinich
2017/11/08 22:03:21
What is so interesting about it?
Last edited at 2017/11/08 22:04:03 by Kilinich
Kilinich
2017/11/12 12:36:42
Kilinich
2017/11/13 08:32:50
Glad you are back!
Kilinich
2017/11/13 08:37:07
hmmm, can't shoot, mouse and e/q buttons not working(
Kilinich
2017/11/13 12:26:39
This is brilliant!
Kilinich
2017/11/19 19:20:58
Nice demo!
Kilinich
2017/11/19 22:23:46
Will looks good on helicopter!
Last edited at 2017/11/20 11:49:22 by Kilinich
Kilinich
2017/11/24 08:53:13
Neat demo!
Kilinich
2017/11/26 12:02:07
Thant is absolutely amazing game!
Kilinich
2017/11/26 12:12:19
Good idea to port bumpy game into algodoo but not very playable
Kilinich
2017/11/26 12:31:06
It needs checkpoints and handle ctrl-z correctly
Kilinich
2017/11/28 11:27:40
There is some problems in scripts- you need to use := in cases with local temporary variables, and make it works with ctrl-Z
Kilinich
2017/12/01 08:03:11
Can't complete level 5. It just hang in 5.5
previous
|
1
…
81
82
83
84
85
|
next