English Amiga Board


Go Back   English Amiga Board > Support > support.Apps

 
 
Thread Tools
Old 12 January 2019, 12:29   #401
Yoz Montana
Registered User
 
Yoz Montana's Avatar
 
Join Date: Dec 2017
Location: FRANCE
Posts: 154
Quote:
Originally Posted by Zener View Post
New release! Get it now!
0.6.10
Amazing release

New example Golden Axe in ECS and AGA mode :
1. Sometimes clipping and slowing sprite
2. Behavior walk up and down does not work in the left direction
3. Level exits does not work
4. AGA mode, when the sprite is in front of the trees, the sprite is not drawn correctly.

Test this behavior in example :
Attached Files
File Type: rar example_goldenaxe_ECS-AGA_by_YozMontana.rar (181.7 KB, 109 views)
Yoz Montana is offline  
Old 12 January 2019, 15:26   #402
Zener
Registered User
 
Zener's Avatar
 
Join Date: Jan 2009
Location: Barcelona / Spain
Posts: 432
Quote:
Originally Posted by Yoz Montana View Post
Amazing release

New example Golden Axe in ECS and AGA mode :
1. Sometimes clipping and slowing sprite
2. Behavior walk up and down does not work in the left direction
3. Level exits does not work
4. AGA mode, when the sprite is in front of the trees, the sprite is not drawn correctly.

Test this behavior in example :
Wow, that thing with the trees is really weird!

Please could you give me more details about 1?
For 2, you don't need to check for direction if you use mirror animation. You need that Right has as mirror the left anim. And just by playing the right anim if the character is facing left RP will play the left anim.

https://gyazo.com/76cdc73b5abf11c5b72ed47f1e13106d

For 3 you need a couple of extra things, first you need to add the trigger Check Exits. And second you need to define the map limits, this is done in inside level->Edit map. In the camera limits, try to put 10 instead of 84.
Zener is offline  
Old 12 January 2019, 17:51   #403
Zener
Registered User
 
Zener's Avatar
 
Join Date: Jan 2009
Location: Barcelona / Spain
Posts: 432
Ok, the thing with the trees in AGA mode.

When I sliced the sprites the game was not AGA, that means the sprites were saved with less bitplanes than they need now in the AGA setup. Sorry, for now you need to slice them again to solve the issue.
Zener is offline  
Old 13 January 2019, 07:27   #404
xboxown
Registered User
 
Join Date: Dec 2012
Location: Vancouver/Canada
Posts: 676
Every time I try to load a sheet in redpill it makes my entire Amiga guru!

No matter how many times I try it gurus my Amiga ! This is the sheet I am using! (The graphics are all my handiwork) Can someone help me please what I have done wrong?
Attached Thumbnails
Click image for larger version

Name:	psychotictactoeboard.png
Views:	168
Size:	1.2 KB
ID:	61571  
xboxown is offline  
Old 13 January 2019, 09:56   #405
d4rk3lf
Registered User
 
d4rk3lf's Avatar
 
Join Date: Jul 2015
Location: Novi Sad, Serbia
Posts: 1,668
Quote:
Originally Posted by xboxown View Post
Every time I try to load a sheet in redpill it makes my entire Amiga guru!

No matter how many times I try it gurus my Amiga ! This is the sheet I am using! (The graphics are all my handiwork) Can someone help me please what I have done wrong?
I am in no position to offer help, because I am also beginner in RedPill, but I'll try.
When you said "Amiga becomes guru", you mean it crashes the whole app?
Is that happens when you click "auto slice"?
If that is the case, my guess would be that RedPill have troubles auto finding your sprites, because background color is not your transparent color.
1) How do you convert png to iff file?
2) Is your zero color transparent color (you can check that in Personal Paint)
3) What is the resolution of your biggest sprite (that head)? From my experience, it can stuck in auto slice, if you go over 55-60px in width... or some number like that.

Here is how I do it, with the sprites, and you can try that.
I recorded you a quick video:
[ Show youtube player ]


Quote:
Originally Posted by Zener View Post
In order to instantiate an object it must be non static, click on the static checkbox
Thanks, it worked perfectly

@Yoz Montana
How is that gorgeous game Guardian of yours going?
And where did you learn all that stuff on RedPill?
I am struggling with simplest actions, is there any help I can read what conditions and actions means?

For example, I am looking at samples Galaga and MomoSpace, and still can't recreate out how the simple spawning of enemy works.
I understand that there is a big long object, that spawns enemy.
I create that, I create timer, then I put in condition my timer, and in action instantiate enemy, but it's either not working, or spawns too many enemies (no matter I increase my timer value).

But basically, did you learned all that stuff, just by trials and errors?
I am not sure I am smart enough, to figure all that without any help file, with at least basic explanation what each condition and action means.
d4rk3lf is offline  
Old 13 January 2019, 13:31   #406
Yoz Montana
Registered User
 
Yoz Montana's Avatar
 
Join Date: Dec 2017
Location: FRANCE
Posts: 154
Quote:
Originally Posted by d4rk3lf View Post

@Yoz Montana
How is that gorgeous game Guardian of yours going?
And where did you learn all that stuff on RedPill?
I am struggling with simplest actions, is there any help I can read what conditions and actions means?

For example, I am looking at samples Galaga and MomoSpace, and still can't recreate out how the simple spawning of enemy works.
I understand that there is a big long object, that spawns enemy.
I create that, I create timer, then I put in condition my timer, and in action instantiate enemy, but it's either not working, or spawns too many enemies (no matter I increase my timer value).

But basically, did you learned all that stuff, just by trials and errors?
I am not sure I am smart enough, to figure all that without any help file, with at least basic explanation what each condition and action means.

For use RedPill, you have to know how to program, to have programming logic.
With RedPill, you program without typing a line of code.
Just by using the properties offered in the software.
I am a developer, using Redpill is easier for me.
The most important thing is to have programming logic.

Simplify your tasks per session by using custom triggers.
Make Triggers for fire, jumps, ect, in Object -> panel Edit Triggers, save fire.triggers, save jumps.triggers, ect.
In your global project, Object -> panel Edit Triggers load the triggers corresponding to the object in question.

Condition Parameter ______________________|__ Actions Parameter
[Input Right] [Keep] [Player] _________________|__ [Set speed Y] [2]
if you stayed press the right key, the player object | moves on the X axis at a speed of 2

Hoping to have answered your questions.
Yoz Montana is offline  
Old 13 January 2019, 13:50   #407
d4rk3lf
Registered User
 
d4rk3lf's Avatar
 
Join Date: Jul 2015
Location: Novi Sad, Serbia
Posts: 1,668
Thanks Yuz
Yes, I get that about player or enemy movement.
I did player movement with no problem, enemy movement, also played with collisions, then triggering camera shake, or just dying.
Those simple tasks are not problem.

Some other simple tasks are problem.

I am trying to think like programmer, but not works always.
Here is the concrete example:
I want to spawn small object from big (long) object, and that those small object fall...

Ok... so I first create variable timmer (let's say 1000 value), and call it... spawn

Small object:
Condition:
none (or always) (I don't really need condition here)

Action:
Set Speed Y=2
Play anim (whatever sprite)
-----------------
Big object (spawner)
Condition:
none (again, I don't see why I would need a condition here, because I want to start right away)

Action:
Activate Timer: Spawn
Instantiante: small object
(I guess, that means that times start counting to 1000, and whenever it counts, it spawns (instantienate) small object)

and it's not working....
-----------------------

All in all, I like to experiment, and I've learn a lot for past 2 days, just would like to read some help file on conditions and actions, and what each of them means.
d4rk3lf is offline  
Old 13 January 2019, 14:07   #408
Yoz Montana
Registered User
 
Yoz Montana's Avatar
 
Join Date: Dec 2017
Location: FRANCE
Posts: 154
d4rk3lf : You want create a object generator. you want object create a another object in in a definite time.

Is it this ?
Yoz Montana is offline  
Old 13 January 2019, 14:24   #409
d4rk3lf
Registered User
 
d4rk3lf's Avatar
 
Join Date: Jul 2015
Location: Novi Sad, Serbia
Posts: 1,668
Quote:
Originally Posted by Yoz Montana View Post
Is it this ?
Thanks a lot for trying to help, I appreciate your time.

I want to do many things , and that was just example, of what I've been trying, and couldn't make it.
Here is the picture to explain:


Blue rectangle is object 1.
Red circle is object 2.
I want blue to spawn red, and red to fall down.
(there's already exactly the same setup in 2 sample scenes (Galaga, and other shooter), but they used few spawns timmer variables, and I want it to try as simple as possible setup (sop I can understand better).
-------------

BUT!
Here is what really bothers me!
Let's take a look at Golden Axe example:


Can I make another object (where the red circle is), to spawn right there, when I press fire?
I know there's a option that I can align any object to my player object, and I can do that... no problem
But how can I offset that new object (after aligning), a little bit on Y and X?

Or simply said, how would you go into setup for collision detection on fights in Golden Axe?

Last edited by d4rk3lf; 13 January 2019 at 14:32.
d4rk3lf is offline  
Old 13 January 2019, 20:47   #410
xboxown
Registered User
 
Join Date: Dec 2012
Location: Vancouver/Canada
Posts: 676
Quote:
Originally Posted by d4rk3lf View Post
I am in no position to offer help, because I am also beginner in RedPill, but I'll try.
When you said "Amiga becomes guru", you mean it crashes the whole app?
Is that happens when you click "auto slice"?
If that is the case, my guess would be that RedPill have troubles auto finding your sprites, because background color is not your transparent color.
1) How do you convert png to iff file?
2) Is your zero color transparent color (you can check that in Personal Paint)
3) What is the resolution of your biggest sprite (that head)? From my experience, it can stuck in auto slice, if you go over 55-60px in width... or some number like that.

Here is how I do it, with the sprites, and you can try that.
I recorded you a quick video:
[ Show youtube player ]




Thanks, it worked perfectly

@Yoz Montana
How is that gorgeous game Guardian of yours going?
And where did you learn all that stuff on RedPill?
I am struggling with simplest actions, is there any help I can read what conditions and actions means?

For example, I am looking at samples Galaga and MomoSpace, and still can't recreate out how the simple spawning of enemy works.
I understand that there is a big long object, that spawns enemy.
I create that, I create timer, then I put in condition my timer, and in action instantiate enemy, but it's either not working, or spawns too many enemies (no matter I increase my timer value).

But basically, did you learned all that stuff, just by trials and errors?
I am not sure I am smart enough, to figure all that without any help file, with at least basic explanation what each condition and action means.

I have removed the white back color and used transparency but still gurues...causes my Amiga to enter software failure and reboot. What software are you using that have PS for paint program? I would like to use that!

It doesn't crash when it is attempting to slice the images...it crashes when I simply just plain old load the image itself. PLEASE CAN SOMEONE HELP ME!!??
Attached Thumbnails
Click image for larger version

Name:	psychotictactoeboard.png
Views:	96
Size:	2.6 KB
ID:	61575  
xboxown is offline  
Old 13 January 2019, 20:50   #411
Yoz Montana
Registered User
 
Yoz Montana's Avatar
 
Join Date: Dec 2017
Location: FRANCE
Posts: 154
So it's an object generator.
For your example : "Generator meteor"
Object 1 = MY Generator
Object 2 = Meteor
no need for a rectangle, just triggers "My generator".
move My generator to right and left (X = 0 at X=320, Y = 0)
in Action Parameter : [Instantiate Y] [Meteor] [0] when you want it

another object 2 "Meteor"
Triggers 1 : Actions parameter : [Set Speed Y] [2]
Triggers 2 : Condition parameter : [Is off Screen] | Action parameter : [ Destroy ]

For Golden Axe example:
Just collision detection when animation "action sword" [Anim frame is] [ > ] [ 0 ]
Yoz Montana is offline  
Old 13 January 2019, 20:56   #412
Yoz Montana
Registered User
 
Yoz Montana's Avatar
 
Join Date: Dec 2017
Location: FRANCE
Posts: 154
Quote:
Originally Posted by xboxown View Post
It doesn't crash when it is attempting to slice the images...it crashes when I simply just plain old load the image itself.
[/SIZE]
Use GrafX 2, the first palette color is considered transparent:
https://pulkomandy.tk/projects/GrafX2

Save your image .iff [Format lbm] in GrafX 2
Yoz Montana is offline  
Old 13 January 2019, 21:48   #413
Yoz Montana
Registered User
 
Yoz Montana's Avatar
 
Join Date: Dec 2017
Location: FRANCE
Posts: 154
Quote:
Originally Posted by Zener View Post
Ok, the thing with the trees in AGA mode.

When I sliced the sprites the game was not AGA, that means the sprites were saved with less bitplanes than they need now in the AGA setup. Sorry, for now you need to slice them again to solve the issue.
When i load this image, i don't understand why RedPill freeze or Guru Meditation.
Attached Files
File Type: rar sprites.rar (12.5 KB, 121 views)
Yoz Montana is offline  
Old 13 January 2019, 22:07   #414
Zener
Registered User
 
Zener's Avatar
 
Join Date: Jan 2009
Location: Barcelona / Spain
Posts: 432
Quote:
Originally Posted by xboxown View Post
I have removed the white back color and used transparency but still gurues...causes my Amiga to enter software failure and reboot. What software are you using that have PS for paint program? I would like to use that!

It doesn't crash when it is attempting to slice the images...it crashes when I simply just plain old load the image itself. PLEASE CAN SOMEONE HELP ME!!??
Remember the image must be an iff file, not a png.

Try with this one (after unpacking it)
Attached Files
File Type: zip psychotictactoeboard.zip (2.0 KB, 90 views)
Zener is offline  
Old 13 January 2019, 22:26   #415
xboxown
Registered User
 
Join Date: Dec 2012
Location: Vancouver/Canada
Posts: 676
Quote:
Originally Posted by Yoz Montana View Post
When i load this image, i don't understand why RedPill freeze or Guru Meditation.
AHAHAH! You are sharing my pain too??!
xboxown is offline  
Old 14 January 2019, 04:16   #416
amiman99
Registered User
 
amiman99's Avatar
 
Join Date: Sep 2009
Location: San Antonio, TX USA
Age: 50
Posts: 1,185
Does anyone know how to do a Y order on the objects?

I want the objects that are higher on Y axis to be behind of the objects that are on lower Y axis. Is it possible? Thank you.
Attached Thumbnails
Click image for larger version

Name:	y-order.png
Views:	90
Size:	1.5 KB
ID:	61584  
amiman99 is offline  
Old 14 January 2019, 07:55   #417
d4rk3lf
Registered User
 
d4rk3lf's Avatar
 
Join Date: Jul 2015
Location: Novi Sad, Serbia
Posts: 1,668
Quote:
Originally Posted by xboxown View Post
PLEASE CAN SOMEONE HELP ME!!??
Please, don't use this big font,
because it looks like you're yelling/screaming! at us.

Yes, I use Photoshop (as you seen in my video), and don't really know how to do it in other software (check out Amiga Personal Paint, though, it can load Png, and you can save in IFF).
Other people also gave you nice suggestions.
---------------

Quote:
Originally Posted by Yoz Montana View Post
move My generator to right and left (X = 0 at X=320, Y = 0)
in Action Parameter : [Instantiate Y] [Meteor] [0] when you want it
Thanks.
These little thing like that, bothers me.
Like... how do I actually do moving left and right, or spawn new object at the speed/rate I want.

I'll try now, and will let you guys know if I have troubles.
d4rk3lf is offline  
Old 14 January 2019, 09:02   #418
d4rk3lf
Registered User
 
d4rk3lf's Avatar
 
Join Date: Jul 2015
Location: Novi Sad, Serbia
Posts: 1,668
Ok, I've tried it again...

Quote:
Originally Posted by Yoz Montana View Post
in Action Parameter : [Instantiate Y] [Meteor] [0] when you want it
This red quote is what I can't replicate.

Please, take a look at video I created, and you will understand perfectly what I want.
[ Show youtube player ]

Again, thanks for your time.
I appreciate it.
d4rk3lf is offline  
Old 14 January 2019, 12:00   #419
Yoz Montana
Registered User
 
Yoz Montana's Avatar
 
Join Date: Dec 2017
Location: FRANCE
Posts: 154
Quote:
Originally Posted by amiman99 View Post
Does anyone know how to do a Y order on the objects?

I want the objects that are higher on Y axis to be behind of the objects that are on lower Y axis. Is it possible? Thank you.
Yes, it's possible.
Panel Objects : z:[ insert number of depths ]

Last edited by Yoz Montana; 14 January 2019 at 17:24.
Yoz Montana is offline  
Old 14 January 2019, 14:39   #420
DamienD
Banned
 
DamienD's Avatar
 
Join Date: Aug 2005
Location: London / Sydney
Age: 47
Posts: 20,420
Ah, I just remembered that a new thread was created for support / help / tutorials... so that this thread is used for program updates / bug fixes / problems etc...

RedPill - Support / Help / Tutorials

Guess when I get the chance tonight I'm going to have to reorganise.
DamienD is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Tracking a game/program's memory usage clebin Coders. General 5 01 December 2017 10:46
Amiga Demo Creator to save as ''DMS'' DerekAutista123 support.Demos 10 01 November 2016 19:27
Amiga Game Creator with Sonic?? DerekAutista123 Amiga scene 1 06 March 2016 23:32
Commodore 64 D64/D81 image creator for Amiga? Amiga1992 request.Apps 11 13 December 2012 00:27
old game review tv program gimbal Retrogaming General Discussion 10 11 July 2006 02:47

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 02:01.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.18433 seconds with 13 queries