| maison  | Hardware  | réseaux  | programmation  | Logiciel  | Dépannage  | systèmes |  
Logiciel  
  • Adobe Illustrator

  • Un logiciel d'animation

  • antivirus Software

  • Logiciel audio

  • Sauvegarder des données

  • Gravez des CD

  • Gravez des DVD

  • Compression de données

  • Logiciel de base de données

  • desktop Publishing

  • desktop Video

  • Digital Video Software

  • Drupal

  • Logiciels éducatifs

  • Software Engineering

  • Types de fichier d'extension

  • Financial Software

  • Freeware , Shareware et Abandonware

  • GIMP

  • Graphics Software

  • Accueil Recording Software

  • Microsoft Access

  • Microsoft Excel

  • Microsoft Publisher

  • Microsoft Word

  • Code Open Source

  • Autres logiciels informatiques

  • Jeux PC

  • Photoshop

  • Portable Document Format

  • PowerPoint

  • Logiciel de présentation

  • Logiciels de productivité

  • Quicktime

  • Gestion Remote Desktop

  • SQL Server

  • Skype

  • Logiciel bêta de presse

  • Consultants logiciels

  • Les sociétés de développement de logiciels

  • Licences de logiciels

  • Tableur

  • Logiciel de préparation d' impôt

  • Logiciel utilitaire

  • Clip Art Web

  • Windows Media Player

  • Logiciel de traitement de texte
  •  
    Connaissances Informatiques >> Logiciel >> Un logiciel d'animation >> Content
    Tutoriel sur SDL side-scroller
    Simple DirectMedia Layer permet d'accéder à l'audio , clavier, souris , joystick, OpenGL 3 -D hardware et 2-D framebuffers vidéo. Utilisé avec le logiciel de lecture MPEG, émulateurs et autres jeux , le programme SDL est très pratique pour une variété de choses , comme l'animation d'un jeu de scroller côté . SDL fonctionne nativement avec C + + , mais fonctionne également en C , Ada, C # , D, Eiffell , Erlang, Euphoria , Go, Guile , Haskell , Java , Lisp , Lua , ML, Objective C, Pascal , Perl, PHP , Pike, Pliant , Python , Ruby, Smalltalk et Tcl . Instructions
    1

    créer deux nouveaux fichiers appelés " CAnimation.h " et ajouter la directive suivante "include" dans " CApp.h " " CAnimation.cpp /. ": " # include " CAnimation.h »
    2

    Open " CAnimation.h " et entrez le code suivant : .

    # ifndef _CANIMATION_H_ # define _CANIMATION_H_ # include < SDL . h > class CAnimation {private : int currentFrame ; int FrameInc ; privé : FrameRate int; //millisecondes à long oldtime ; publics : int maxframes ; publics : CAnimation () ; vide OnAnimate () ; publics : SetFrameRate void ( int rate); vide SetCurrentFrame (int frame) ; int GetCurrentFrame ();} ; # endif
    3

    ouverte " CAnimation.cpp " et entrez le code suivant avec vos valeurs de fréquence de trame : # include " CAnimation.h " CAnimation :: CAnimation () { currentFrame = 0; maxframes = 0; FrameInc = 1; FrameRate = 100; //millisecondes oldtime = 0; }

    vide CAnimation :: OnAnimate () {if ( oldtime + FrameRate > SDL_GetTicks ()) {return; } oldtime = SDL_GetTicks (); currentFrame + = FrameInc ; if ( FrameInc > 0 ) {if ( currentFrame > = maxframes - 1) { FrameInc = - FrameInc ;} } else {if ( currentFrame <= 0 ) { FrameInc = - FrameInc ;}} } else {if ( currentFrame > = maxframes - 1) { currentFrame = 0; }}} vide CAnimation :: SetFrameRate (int Taux ) { framerate = Taux ;} vide CAnimation :: SetCurrentFrame (int Frame) {if ( Cadre < 0

    Previous :

    next :
      articles connexes
    ·Qu'est-ce qu'un Flash Chart 
    ·Comment faire une programmation dans Flash AS2 
    ·Création Free 3D Animations 
    ·Comment plier une ligne dans Fireworks 
    ·Qu'est-ce que CG Animation 
    ·Pouvez-vous utiliser Flash pour créer des publicités …
    ·Comment faire de phares lumineux dans 3ds Max 
    ·Animations Dance Steps 
    ·Comment convertir une image en un symbole graphique dan…
    ·Comment utiliser OpenSWF Fonction 
      articles en vedette
    ·Comment télécharger Skype sur un HTC HD2 
    ·Comment sauvegarder email sur Windows Live 
    ·Comment inclure un fichier PDF en texte 
    ·Comment faire pour utiliser un Mac Automator changer le…
    ·Comment obtenir Evernote 
    ·Quels sont les 10 différentes parties d'une fenêtre W…
    ·Comment couper un fichier FLV 
    ·Barbed Wire Tutorial Photoshop 
    ·Qu'est-ce que PC Checkup 
    ·Comment créer des projets interactifs dans Adobe InDes…
    Copyright © Connaissances Informatiques http://fr.wingwit.com