80s Digital Display Game

Advanced game related topics
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

Hey all... I've been making lots of progress. The game has a new intro animation, and this video showcases that and the newly functional options screen.

http://carm3d.com/PureBasicForum/April6_Options.mp4

Enjoy! :D

EDIT: I am not keeping these older videos online.. Skip ahead to the end of the thread to see the latest updates.
Last edited by Carm3D on Mon May 05, 2025 9:10 am, edited 1 time in total.
BarryG
Addict
Addict
Posts: 4173
Joined: Thu Apr 18, 2019 8:17 am

Re: 80s Digital Display Game

Post by BarryG »

Looks good! :)
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

BarryG wrote: Sun Apr 06, 2025 1:34 pm Looks good! :)
Thanks! Have any of you guys utilized a video codec in PureBasic? I'm just loading sprite sheets of full frame images for my animation.
pjay
Enthusiast
Enthusiast
Posts: 252
Joined: Thu Mar 30, 2006 11:14 am

Re: 80s Digital Display Game

Post by pjay »

PureBasic has built-in movie playing functionality, the sample below is from the help file:

Code: Select all

;
; ------------------------------------------------------------
;
;   PureBasic - Movie example file
;
;    (c) Fantaisie Software
;
; ------------------------------------------------------------
;

If InitMovie() = 0
  MessageRequester("Error", "Can't initialize movie playback !", 0)
  End
EndIf

MovieName$ = OpenFileRequester("Choose the movie to play", "", "Movie files|*.avi;*.mpg|All Files|*.*", 0)
If MovieName$
  If LoadMovie(0, MovieName$)
  
    OpenWindow(0, 100, 150, MovieWidth(0), MovieHeight(0), "PureBasic - Movie")
    PlayMovie(0, WindowID(0))
      
    Repeat
    Until WaitWindowEvent() = #PB_Event_CloseWindow
  Else
    MessageRequester("Error", "Can't load the movie...", 0)
  EndIf
EndIf

Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

pjay wrote: Sun Apr 06, 2025 3:32 pm PureBasic has built-in movie playing functionality, the sample below is from the help file:
Oh thank you very much!
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

http://carm3d.com/PureBasicForum/OptionsAudio.mp4

Sounds for options screen, also the new Boolean switch option. Now if you'll excuse me, I'm going to break my 48 hour fast. (Breakfast!)
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

Phew! Finally hit this major milestone! My game is starting to get game-like.

http://www.carm3d.com/PureBasicForum/PlayQuest.mp4
User avatar
SPH
Enthusiast
Enthusiast
Posts: 570
Joined: Tue Jan 04, 2011 6:21 pm

Re: 80s Digital Display Game

Post by SPH »

Carm3D wrote: Thu Feb 27, 2025 4:11 am You can't see the images? Strange.. They are showing for me. They are links to images I posted to Discord. Unless I am mistaken there is no way to attach images or files to my posts.
Look my post : https://www.purebasic.fr/english/viewtopic.php?t=81167

Yoo see pics ? :?:

!i!i!i!i!i!i!i!i!i!
!i!i!i!i!i!i!
!i!i!i!
//// Informations ////
Portable LENOVO ideapad 110-17ACL 64 bits
Version de PB : 6.12LTS - 64 bits
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

SPH wrote: Tue Apr 22, 2025 10:56 pm Look my post : https://www.purebasic.fr/english/viewtopic.php?t=81167

Yoo see pics ? :?:
I do! Teach me your secrets!

Meanwhile.. Here's another fun update on my game:
http://www.carm3d.com/PureBasicForum/DI_CaseAppears.mp4
User avatar
SPH
Enthusiast
Enthusiast
Posts: 570
Joined: Tue Jan 04, 2011 6:21 pm

Re: 80s Digital Display Game

Post by SPH »

Carm3D wrote: Thu Apr 24, 2025 1:29 am
SPH wrote: Tue Apr 22, 2025 10:56 pm Look my post : https://www.purebasic.fr/english/viewtopic.php?t=81167

Yoo see pics ? :?:
I do! Teach me your secrets!

Meanwhile.. Here's another fun update on my game:
http://www.carm3d.com/PureBasicForum/DI_CaseAppears.mp4
With that :

https://www.zupimages.net/

!i!i!i!i!i!i!i!i!i!
!i!i!i!i!i!i!
!i!i!i!
//// Informations ////
Portable LENOVO ideapad 110-17ACL 64 bits
Version de PB : 6.12LTS - 64 bits
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

SPH wrote: Thu Apr 24, 2025 10:42 am With that :

https://www.zupimages.net/
D'awww.. That's no secret. You're hosting it externally.
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

(Sorry double-post)
Last edited by Carm3D on Fri May 02, 2025 7:05 pm, edited 1 time in total.
Carm3D
User
User
Posts: 59
Joined: Mon Feb 17, 2025 10:04 am

Re: 80s Digital Display Game

Post by Carm3D »

Post Reply