Evgenii Legotckoi
Evgenii LegotckoiOct. 20, 2015, 12:06 p.m.

QML - Lesson 005. Using a Sprite and AnimatedSprite in QML Qt

Once on the sprites was written three lessons by drawing them to their practical application in Qt in this and this article, I believe that we can not ignore the use of sprites in QML Qt.

Sprites are used in QML is even easier than in Qt / C ++, QML because there are classes that are specifically designed to work with sprites: Sprite and AnimatedSprite.

The project structure to work with Sprite and AnimatedSprite

The project is created as a standard project QtQuick with controls, and then I throw out all superfluous Tipo menyubara and buttons. I am leaving only that we will use for demonstration.

  • main.cpp - the main project file that runs qml file;
  • main.qml - application window;
  • MainForm.ui.qml - form to work with the designer;
  • sprite_sheet.png - the image of our sprite.

sprite_sheet.png

main.qml

As a lesson in itself is quite simple, it will focus on the code only this file.

In this tutorial, I suggest two options for the use of sprites. One embodiment - is the application via SpriteSequence , which can be placed in different sprites with different sources. The second option - is using AnimatedSprite , which is taken one source. Both the use of sprites in this lesson will give the same result.

In SpriteSequence is given sprite size and its position in the main window of the application, while the frame size of the sprite and the number of its personnel is defined already in the Sprite object, which is placed in SpriteSequence . In the SpriteSequence you can put a few of these objects Sprite.

In the case of all parameters AnimatedSprite sizes and locations, as well as its size and frame number are specified in the AnimatedSprite. The difference is that only one image can be taken as a source of sprites.

Also, you must specify frameSync like true. Then sprites will work synchronously, if you do not, then they will run slowly and alternately.

import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Dialogs 1.2

ApplicationWindow {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    MainForm {
        // Stretch the shape of the main window over the application window
        anchors.fill: parent

        /* Stretch the shape of the main window over the application window. 
         * Object sprites sequence. 
         * This object can be set different sprites with different pictures and their sequence
         * */
        SpriteSequence {
            id: image
            width: 20   // The width of the area under the sprite
            height: 20  // The height of the area under the sprite
            // Sprite is located at the top left of the application window
            anchors.left: parent.left
            anchors.leftMargin: 100
            anchors.top: parent.top
            anchors.topMargin: 100

            Sprite {
                id: sprite
                source: "sprite_sheet.png"
                frameCount: 15     
                frameWidth: 20   
                frameHeight:  20   
                frameSync: true     
            }
        }

        AnimatedSprite {
            id: animatedSprite

            width: 20 // The width of the area under the sprite 
            height: 20 // The height of the area under the sprite
            // Sprite is located at the top right of the application window
            anchors.right: parent.right
            anchors.rightMargin: 100
            anchors.top: parent.top
            anchors.topMargin: 100

            source: "sprite_sheet.png"
            frameCount: 15  
            frameWidth: 20  
            frameHeight: 20 
            frameSync: true 
        }
    }
}

Conclusion

As a result, you will receive an application in the left and right corner which will house works equally sprites explosions. Demonstration applications, see the video tutorial, are also shown in the video tutorial behaviors sprites if not configured properly.

Video

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
l
  • laei
  • April 23, 2024, 3:19 p.m.

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:10points,
  • Rating points-10
l
  • laei
  • April 23, 2024, 3:17 p.m.

C++ - Тест 003. Условия и циклы

  • Result:50points,
  • Rating points-4
e
  • ehot
  • March 31, 2024, 8:29 p.m.

C++ - Тест 003. Условия и циклы

  • Result:78points,
  • Rating points2
Last comments
k
kmssrFeb. 9, 2024, 12:43 a.m.
Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
Qt WinAPI - Lesson 007. Working with ICMP Ping in Qt Без строки #include <QRegularExpressionValidator> в заголовочном файле не работает валидатор.
EVA
EVADec. 25, 2023, 4:30 p.m.
Boost - static linking in CMake project under Windows Ошибка LNK1104 часто возникает, когда компоновщик не может найти или открыть файл библиотеки. В вашем случае, это файл libboost_locale-vc142-mt-gd-x64-1_74.lib из библиотеки Boost для C+…
J
JonnyJoDec. 25, 2023, 2:38 p.m.
Boost - static linking in CMake project under Windows Сделал всё по-как у вас, но выдаёт ошибку [build] LINK : fatal error LNK1104: не удается открыть файл "libboost_locale-vc142-mt-gd-x64-1_74.lib" Хоть убей, не могу понять в чём дел…
G
GvozdikDec. 19, 2023, 3:01 a.m.
Qt/C++ - Lesson 056. Connecting the Boost library in Qt for MinGW and MSVC compilers Для решения твой проблемы добавь в файл .pro строчку "LIBS += -lws2_32" она решит проблему , лично мне помогло.
Now discuss on the forum
G
GarApril 22, 2024, 11:46 a.m.
Clipboard Как скопировать окно целиком в clipb?
DA
Dr Gangil AcademicsApril 20, 2024, 1:45 p.m.
Unlock Your Aesthetic Potential: Explore MSC in Facial Aesthetics and Cosmetology in India Embark on a transformative journey with an msc in facial aesthetics and cosmetology in india . Delve into the intricate world of beauty and rejuvenation, guided by expert faculty and …
a
a_vlasovApril 14, 2024, 12:41 p.m.
Мобильное приложение на C++Qt и бэкенд к нему на Django Rest Framework Евгений, добрый день! Такой вопрос. Верно ли следующее утверждение: Любое Android-приложение, написанное на Java/Kotlin чисто теоретически (пусть и с большими трудностями) можно написать и на C+…
Павел Дорофеев
Павел ДорофеевApril 14, 2024, 8:35 a.m.
QTableWidget с 2 заголовками Вот тут есть кастомный QTableView с многорядностью проект поддерживается, обращайтесь
f
fastrexApril 4, 2024, 10:47 a.m.
Вернуть старое поведение QComboBox, не менять индекс при resetModel Добрый день! У нас много проектов в которых используется QComboBox, в версии 5.5.1, когда модель испускает сигнал resetModel, currentIndex не менялся. В версии 5.15 при resetModel происходит try…

Follow us in social networks