Bennu Game Development

Foros en Español => Mesa de Ayuda => Topic started by: MisterN on January 03, 2012, 02:18:40 AM

Title: ¿distancia de un objeto?
Post by: MisterN on January 03, 2012, 02:18:40 AM
¿Qué código puedo usar para obtener la distancia de un objeto? Solía usar "map_get_pixel" pero estoy tratando de buscar una mejor forma para la colisión. Para probar un poco cambie todo en mí código fall a:
// Implementation of fall.   
        ii = fall;   
        if(ii > 0)
            while(ii != 0)   
                if(collision(type level_mask))
                    ii = ii + 1;
                    falling=false;
                        if(!walking);
                            player_status=0;
                        else
                            player_status=1;
                        end
                break; 
            end   
            ii = ii - 1; 
            end   
        else   
            ii = 0; 
        end


Mas o menos funciona, pero no si hago que cada colisión funcione de esa forma. Estaría muy agradecido si alguien pudiera ayudarme.

SORRY FOR POOR TRANSLATION
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 08, 2012, 05:48:44 PM
changed

collide_level = collision(type level_mask);
        // Implementation of fall.     
        ii = fall;     
        if(ii > 0)
            while(ii != 0 and !collide_level)
                    //To illustrate simple behaviour implementation, I just check if there is an object somewhere on any x below this process:
                    if(collide_level.y > y - fall + ii)
                        ii = ii + 1;
                        //Some logic copied from your source which I think you'd want here
                        falling = false;
                            if(!walking);
                                player_status=0;
                            else
                                player_status=1;
                            end
                        break;
                    else if(collide_level.y < y - fall + ii)
                        //when hitting something above you:
                        //Some logic copied from your source which I think you'd want here
                        fall = 3;
                        break;
                    end
                    ii = ii - 1;   
            end     
        else     
            ii = 0;   
        end
     
        // Move the fall until we can.     
        y = y + (fall-ii);


error:
QuoteERROR: Runtime error in Player<65545> - process 0 not active
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 10, 2012, 03:27:51 AM
bump
Title: Re: ¿distancia de un objeto?
Post by: SplinterGU on January 10, 2012, 05:30:47 AM
we need more code...

and you can execute the code with debug information... compile with -g and run with -d
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 10, 2012, 07:16:20 PM
How can I do that with notepad++? I know I can run in debug mode.

i know for sure testing_jump has the original code (the map_get_pixel stuff), level_tree has levelmask.
Title: Re: ¿distancia de un objeto?
Post by: SplinterGU on January 11, 2012, 08:51:50 AM
Thanks, but I still need debug log...
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 11, 2012, 06:40:44 PM
I don't know how to get that from notepad++ im sure it can be found though with the code I have supplied
Title: Re: ¿distancia de un objeto?
Post by: SplinterGU on January 11, 2012, 06:48:59 PM
please, use command line.
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 11, 2012, 07:25:56 PM
This is not linux, and I still have no idea. Can you or someone just try to help?
Title: Re: ¿distancia de un objeto?
Post by: SplinterGU on January 11, 2012, 07:40:43 PM
is windows?

what is this?

edit: viendo tu primer post, creo que te convendria hablar en español, se te entiende mejor en español que en ingles.
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 11, 2012, 10:12:11 PM
Estoy utilizando windows para esto, lo que sea con el bennupack.
Title: Re: ¿distancia de un objeto?
Post by: SplinterGU on January 12, 2012, 04:11:47 AM
si desde el boton de inicio, Run o ejecutar, pones cmd.exe tienes la linea de comandos...

y haces igual que en linux...

cd directorio
bgdc -g programa.prg
bgdi -d programa
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 13, 2012, 07:45:41 PM
How do I do directories in linux? Cause I get include errors.
Title: Re: ¿distancia de un objeto?
Post by: SplinterGU on January 13, 2012, 07:56:34 PM
you mean, how create new folders?

if you ask it, then you can use

mkdir dirctory
Title: Re: ¿distancia de un objeto?
Post by: MisterN on January 13, 2012, 11:41:57 PM
No, like
load_png("./folder/file.png");
load_song("./folder/song.ogg");
IMPORT "./file.prg";

in linux form, cause when I compile in linux, it doesn't work, and if I use the interpreter for the one I compiled on windows, it does not load songs or pngs. I remember josebita told me in an email something about he had to change the directories.