Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mindslight

Pages: [1] 2 3 ... 13
1
Project announcement / Re: Reye's scary game
« on: August 15, 2021, 12:01:03 pm »
Very nice, I'll test it  ;D

2
Project announcement / Re: Reye's TankGame
« on: February 04, 2021, 07:38:00 pm »
Your game is very cool :)

Don't hesitate to contact me for help ;)

3
General Jo Engine Help / Re: Help me!
« on: January 14, 2021, 11:41:42 pm »
You should have something that display this image.

Can you share your code ?

4
General Jo Engine Help / Re: Help me!
« on: January 14, 2021, 12:32:00 pm »
Hi,

Can you give us more information about what you do and need ?

5
Jo Engine Wish List / Re: 3D Controller support
« on: November 15, 2020, 08:02:31 pm »
Ok :)

6
General Jo Engine Help / Re: Faster Way to load an TGA image pack?
« on: September 07, 2020, 10:00:27 am »
Hi,

Use 8 bits TGA or Jo Bin format instead.

If you use these tiles every time, you can also embed them in the code (hardcoded image)

7
Jo Engine Wish List / Re: 8 Bit TGA Support?
« on: May 16, 2020, 11:43:18 pm »
Hi,

I just started the implementation ;)

8
General Jo Engine Help / Re: Why is this skipping?
« on: May 16, 2020, 06:38:09 pm »
Hi!

I fixed Ponut64 slSoundRequest Demo on EmeraldNova website:

https://emeraldnova.github.io/SHREC/Jo_Engine/Playing_A_Sound_Effect/page.html

  • jo_fs_read_file_async_ptr()
  • jo_core_add_vblank_callback() that allows multiple vblank functions
  • Useless vars and uncalled functions removed to essential

See attachment.

9
This was fixed on the last version available on GitHub

10
Hello,

I'm back on the project !!!

This time, I implemented a debugging console that you can toggle anytime.

See "demo - debug console" for more details.

I added some builtins functions (others will arrive) but you can add your own command easily :)

11
Free talk / Very busy
« on: September 06, 2019, 02:47:55 pm »
Hi !

I just wanted to say a little message because many of you are contacting me, but I'm overworked right now.

I am on a big project in my company, but do not worry, I will rework on the project as soon as possible :)

12
About you / Re: D3nX into the game !
« on: September 04, 2019, 09:59:19 am »
Hi D3nX !

We have a new soldier in our retrogrammig army :D

13
Project announcement / Re: Open Source Objects - Gaiden Game
« on: May 08, 2019, 12:14:30 pm »
Very cool, I will take a look :)

Thx :)

14
Project announcement / MAZINGER Z Homebrew for SEGA Saturn
« on: April 02, 2019, 12:58:21 pm »
Hi!

There is a new project in progress: MAZINGER Z for the Sega Saturn made by the Reverant Rolando Fernández Benavidez.

Website: https://vectrex8.wixsite.com/mazinger

15
Jo Map Editor / Re: Which objects and sides of objects are solid?
« on: January 17, 2019, 12:41:40 pm »
Hi!

In JoMapEditor, you can set a custom value for each tile (see the attachement).

For the sonic demo, I used two values 0 or 1 (for solid blocks)

Code: [Select]
static inline bool      has_horizontal_collision(void)
{
    int         next_pixel;

    next_pixel = jo_physics_is_going_on_the_right(&physics) ? player.x + 4 :
                 jo_physics_is_going_on_the_left(&physics) ? player.x - 4 :
                 player.x;
    int attr = jo_map_hitbox_detection_custom_boundaries(WORLD_MAP_ID, map_pos_x + next_pixel + SONIC_WIDTH_2, map_pos_y + player.y, 4, 20);
    if (attr == JO_MAP_NO_COLLISION)
        return false;
    if (attr != MAP_TILE_BLOCK_ATTR)
        return false;
    return true;
}

Pages: [1] 2 3 ... 13
SMF spam blocked by CleanTalk