Page 2 of 3

Re: 80s Digital Display Game

Posted: Sun Apr 06, 2025 12:01 pm
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.

Re: 80s Digital Display Game

Posted: Sun Apr 06, 2025 1:34 pm
by BarryG
Looks good! :)

Re: 80s Digital Display Game

Posted: Sun Apr 06, 2025 2:57 pm
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.

Re: 80s Digital Display Game

Posted: Sun Apr 06, 2025 3:32 pm
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


Re: 80s Digital Display Game

Posted: Sun Apr 06, 2025 5:29 pm
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!

Re: 80s Digital Display Game

Posted: Mon Apr 07, 2025 2:20 am
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!)

Re: 80s Digital Display Game

Posted: Sat Apr 19, 2025 11:30 pm
by Carm3D
Phew! Finally hit this major milestone! My game is starting to get game-like.

http://www.carm3d.com/PureBasicForum/PlayQuest.mp4

Re: 80s Digital Display Game

Posted: Tue Apr 22, 2025 10:56 pm
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 ? :?:

Re: 80s Digital Display Game

Posted: Thu Apr 24, 2025 1:29 am
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

Re: 80s Digital Display Game

Posted: Thu Apr 24, 2025 10:42 am
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/

Re: 80s Digital Display Game

Posted: Thu Apr 24, 2025 5:09 pm
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.

Re: 80s Digital Display Game

Posted: Sat Apr 26, 2025 5:23 pm
by Carm3D

Re: 80s Digital Display Game

Posted: Wed Apr 30, 2025 7:04 pm
by Carm3D

Re: 80s Digital Display Game

Posted: Fri May 02, 2025 7:00 pm
by Carm3D
(Sorry double-post)

Re: 80s Digital Display Game

Posted: Fri May 02, 2025 7:02 pm
by Carm3D