FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC
Vous souhaitez réagir à ce message ? Créez un compte en quelques clics ou connectez-vous pour continuer.
FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC

Développement d'applications avec le langage Panoramic
 
AccueilAccueil  RechercherRechercher  Dernières imagesDernières images  S'enregistrerS'enregistrer  MembresMembres  Connexion  
Derniers sujets
» Logiciel de planétarium.
Jeu de Ping-Pong Emptypar Pedro Aujourd'hui à 10:37

» Un autre pense-bête...
Jeu de Ping-Pong Emptypar Froggy One Jeu 21 Nov 2024 - 15:54

» Récupération du contenu d'une page html.
Jeu de Ping-Pong Emptypar Pedro Sam 16 Nov 2024 - 14:04

» Décompilation
Jeu de Ping-Pong Emptypar JL35 Mar 12 Nov 2024 - 19:57

» Un album photos comme du temps des grands-mères
Jeu de Ping-Pong Emptypar jjn4 Mar 12 Nov 2024 - 17:23

» traitement d'une feuille excel
Jeu de Ping-Pong Emptypar jjn4 Jeu 7 Nov 2024 - 3:52

» Aide-mémoire mensuel
Jeu de Ping-Pong Emptypar jjn4 Lun 4 Nov 2024 - 18:56

» Des incomprèhension avec Timer
Jeu de Ping-Pong Emptypar Klaus Mer 30 Oct 2024 - 18:26

» KGF_dll - nouvelles versions
Jeu de Ping-Pong Emptypar Klaus Mar 29 Oct 2024 - 17:58

» instructions panoramic
Jeu de Ping-Pong Emptypar maelilou Lun 28 Oct 2024 - 19:51

» Figures fractales
Jeu de Ping-Pong Emptypar Marc Ven 25 Oct 2024 - 12:18

» Panoramic et Scanette
Jeu de Ping-Pong Emptypar Yannick Mer 25 Sep 2024 - 22:16

» Editeur d étiquette avec QR évolutif
Jeu de Ping-Pong Emptypar JL35 Lun 23 Sep 2024 - 22:40

» BUG QR Code DelphiZXingQRCode
Jeu de Ping-Pong Emptypar Yannick Dim 22 Sep 2024 - 11:40

» fichier.exe
Jeu de Ping-Pong Emptypar leclode Ven 20 Sep 2024 - 19:02

Navigation
 Portail
 Index
 Membres
 Profil
 FAQ
 Rechercher
Rechercher
 
 

Résultats par :
 
Rechercher Recherche avancée
Novembre 2024
LunMarMerJeuVenSamDim
    123
45678910
11121314151617
18192021222324
252627282930 
CalendrierCalendrier
Le Deal du moment : -38%
Ecran PC gaming 23,8″ – ACER KG241Y P3bip ...
Voir le deal
99.99 €

 

 Jeu de Ping-Pong

Aller en bas 
2 participants
AuteurMessage
Klaus

Klaus


Nombre de messages : 12331
Age : 75
Localisation : Ile de France
Date d'inscription : 29/12/2009

Jeu de Ping-Pong Empty
MessageSujet: Jeu de Ping-Pong   Jeu de Ping-Pong EmptyJeu 3 Nov 2016 - 12:32

J'ai implémenté une version de l'ancêtre des jeux vidéo: le Ping-Pong. C'est fait par une fonction de KGF.dll. Voici le programme Panoramic qui l'utilise:
Code:
' test_PingPong.bas

label creer, supprimer, sortir
label halt, continuer, gauche, droite
label key

dim res%

dll_on "KGF.dll"

caption 0,"Jeu de Ping-Pong"
height 0,500
main_menu 1
  sub_menu 2 : parent 2,1 : caption 2,"Jeu"
    sub_menu 3 : parent 3,2 : caption 3,"Créer" : on_click 3,creer
    sub_menu 4 : parent 4,2 : caption 4,"Supprimer" : on_click 4,supprimer
    sub_menu 10 : parent 10,2 : caption 10,"-"
    sub_menu 11 : parent 11,2 : caption 11,"Sortir" : on_click 11,sortir
   
button 21 : top 21,10 : left 21,330 : caption 21,"Pause" : on_click 21,halt : hide 21
button 22 : top 22,40 : left 22,330 : caption 22,"Continuer" : on_click 22,continuer : hide 22
button 23 : top 23,70 : left 23,330 : caption 23,"Pause" : on_click 23,gauche : hide 23
button 24 : top 24,100 : left 24,330 : caption 24,"Continuer" : on_click 24,droite : hide 24

on_key_down 0,key

end

creer:
  show 21 : show 22 : show 23 : show 24
  res% = dll_call6("PingPong",handle(0),1,10,10,300,300)
  return
 
supprimer:
  res% = dll_call6("PingPong",0,0,0,0,0,0)
  hide 21 : hide 22 : hide 23 : hide 24
  return
 
sortir:
  res% = dll_call6("PingPong",0,0,0,0,0,0)
  terminate
 
halt:
  res% = dll_call6("PingPong",0,2,0,0,0,0)
  return
 
continuer:
  res% = dll_call6("PingPong",0,3,0,0,0,0)
  return
 
gauche:
  res% = dll_call6("PingPong",0,4,0,0,0,0)
  return

droite:
  res% = dll_call6("PingPong",0,5,0,0,0,0)
  return

key:
  select scancode
    case 37: gosub gauche
    case 39: gosub droite
  end_select
  return
Noubliez-pas de télécharger la dernière version de KGF.dll (lien dans la signature).
Revenir en haut Aller en bas
http://klauspanoramic.comxa.com/index.html
Yannick




Nombre de messages : 8635
Age : 53
Localisation : Bretagne
Date d'inscription : 15/02/2010

Jeu de Ping-Pong Empty
MessageSujet: re   Jeu de Ping-Pong EmptyJeu 3 Nov 2016 - 15:05

Bon exemple d' utilisation.
Laughing
Revenir en haut Aller en bas
 
Jeu de Ping-Pong
Revenir en haut 
Page 1 sur 1
 Sujets similaires
-
» JEU : LE PING
»  - Bacong V1.0 - Sorte de Pong traduit depuis Aurel Basic

Permission de ce forum:Vous ne pouvez pas répondre aux sujets dans ce forum
FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC :: PANORAMIC :: Les jeux faits avec Panoramic-
Sauter vers: