From 2f3880baf29a352dc6d2e9217520c8ca69d8bc9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Mon, 11 Apr 2016 23:38:03 +0200 Subject: [PATCH] Renommage de forme ptf => skizzle --- .gitignore | 2 +- CMakeLists.txt | 10 +++++----- README.md | 2 +- include/block.hpp | 4 ++-- include/collision.hpp | 4 ++-- include/constants.hpp | 4 ++-- include/editor.hpp | 4 ++-- include/finish_block.hpp | 4 ++-- include/kill_block.hpp | 4 ++-- include/level.hpp | 4 ++-- include/manager.hpp | 4 ++-- include/object.hpp | 4 ++-- include/resource_manager.hpp | 4 ++-- include/state.hpp | 4 ++-- include/widget_button.hpp | 4 ++-- include/widget_toolbar.hpp | 4 ++-- 16 files changed, 33 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index 0b2c9f0..7f8e2b2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ CMakeFiles CMakeCache.txt Makefile -ptf +skizzle cmake_install.cmake *.aux diff --git a/CMakeLists.txt b/CMakeLists.txt index 10ae9c9..f704dc9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8) -project(ptf) +project(skizzle) # Inclusion des fichiers d'en-tête et de source include_directories(include) @@ -31,7 +31,7 @@ endif() # Recherche des librairies set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}" ${CMAKE_MODULE_PATH}) -add_executable(ptf ${SOURCES}) +add_executable(skizzle ${SOURCES}) find_package(SFML 2 REQUIRED system window graphics network audio) find_package(Boost 1.60.0 COMPONENTS system filesystem) @@ -39,8 +39,8 @@ find_package(Boost 1.60.0 COMPONENTS system filesystem) include_directories(${SFML_INCLUDE_DIRS}) include_directories(${Boost_INCLUDE_DIRS}) -target_link_libraries(ptf ${SFML_LIBRARIES}) -target_link_libraries(ptf ${Boost_LIBRARIES}) +target_link_libraries(skizzle ${SFML_LIBRARIES}) +target_link_libraries(skizzle ${Boost_LIBRARIES}) # Installation de l'exécutable -install(TARGETS ptf DESTINATION bin) +install(TARGETS skizzle DESTINATION bin) diff --git a/README.md b/README.md index e2e2232..031d4a0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
Capture d'écran du jeu -

projet-cmi

+

Skizzle

Arborescence : diff --git a/include/block.hpp b/include/block.hpp index 6819b93..7554ff9 100644 --- a/include/block.hpp +++ b/include/block.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_BLOCK_HPP__ -#define __PTF_BLOCK_HPP__ +#ifndef __SKIZZLE_BLOCK_HPP__ +#define __SKIZZLE_BLOCK_HPP__ #include #include diff --git a/include/collision.hpp b/include/collision.hpp index 01d212d..50f2212 100644 --- a/include/collision.hpp +++ b/include/collision.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_COLLISION_HPP__ -#define __PTF_COLLISION_HPP__ +#ifndef __SKIZZLE_COLLISION_HPP__ +#define __SKIZZLE_COLLISION_HPP__ #include #include diff --git a/include/constants.hpp b/include/constants.hpp index 201252b..88efc32 100644 --- a/include/constants.hpp +++ b/include/constants.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_CONSTANTS_HPP__ -#define __PTF_CONSTANTS_HPP__ +#ifndef __SKIZZLE_CONSTANTS_HPP__ +#define __SKIZZLE_CONSTANTS_HPP__ #include diff --git a/include/editor.hpp b/include/editor.hpp index c6a325b..67c6152 100644 --- a/include/editor.hpp +++ b/include/editor.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_EDITOR_HPP__ -#define __PTF_EDITOR_HPP__ +#ifndef __SKIZZLE_EDITOR_HPP__ +#define __SKIZZLE_EDITOR_HPP__ #include "level.hpp" #include "widget_timer.hpp" diff --git a/include/finish_block.hpp b/include/finish_block.hpp index f864556..8127ec1 100644 --- a/include/finish_block.hpp +++ b/include/finish_block.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_FINISH_BLOCK_HPP__ -#define __PTF_FINISH_BLOCK_HPP__ +#ifndef __SKIZZLE_FINISH_BLOCK_HPP__ +#define __SKIZZLE_FINISH_BLOCK_HPP__ #include #include diff --git a/include/kill_block.hpp b/include/kill_block.hpp index d0efeb8..f069ca7 100644 --- a/include/kill_block.hpp +++ b/include/kill_block.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_KILL_BLOCK_HPP__ -#define __PTF_KILL_BLOCK_HPP__ +#ifndef __SKIZZLE_KILL_BLOCK_HPP__ +#define __SKIZZLE_KILL_BLOCK_HPP__ #include #include diff --git a/include/level.hpp b/include/level.hpp index cf08bc4..f443371 100644 --- a/include/level.hpp +++ b/include/level.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_LEVEL_HPP__ -#define __PTF_LEVEL_HPP__ +#ifndef __SKIZZLE_LEVEL_HPP__ +#define __SKIZZLE_LEVEL_HPP__ #include #include diff --git a/include/manager.hpp b/include/manager.hpp index 0712f1f..6c16650 100644 --- a/include/manager.hpp +++ b/include/manager.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_MANAGER_HPP__ -#define __PTF_MANAGER_HPP__ +#ifndef __SKIZZLE_MANAGER_HPP__ +#define __SKIZZLE_MANAGER_HPP__ #include "resource_manager.hpp" #include "state.hpp" diff --git a/include/object.hpp b/include/object.hpp index 1b7402b..75c8162 100644 --- a/include/object.hpp +++ b/include/object.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_OBJECT_HPP__ -#define __PTF_OBJECT_HPP__ +#ifndef __SKIZZLE_OBJECT_HPP__ +#define __SKIZZLE_OBJECT_HPP__ #include #include diff --git a/include/resource_manager.hpp b/include/resource_manager.hpp index 41744cc..6f9fb02 100644 --- a/include/resource_manager.hpp +++ b/include/resource_manager.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_RESOURCE_MANAGER_HPP__ -#define __PTF_RESOURCE_MANAGER_HPP__ +#ifndef __SKIZZLE_RESOURCE_MANAGER_HPP__ +#define __SKIZZLE_RESOURCE_MANAGER_HPP__ #include #include diff --git a/include/state.hpp b/include/state.hpp index 517cc87..acd5812 100644 --- a/include/state.hpp +++ b/include/state.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_STATE_HPP__ -#define __PTF_STATE_HPP__ +#ifndef __SKIZZLE_STATE_HPP__ +#define __SKIZZLE_STATE_HPP__ #include diff --git a/include/widget_button.hpp b/include/widget_button.hpp index b13009f..6eb0702 100644 --- a/include/widget_button.hpp +++ b/include/widget_button.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_UTIL_WIDGET_BUTTON_HPP__ -#define __PTF_UTIL_WIDGET_BUTTON_HPP__ +#ifndef __SKIZZLE_UTIL_WIDGET_BUTTON_HPP__ +#define __SKIZZLE_UTIL_WIDGET_BUTTON_HPP__ #include #include diff --git a/include/widget_toolbar.hpp b/include/widget_toolbar.hpp index cfe1010..737b7b0 100644 --- a/include/widget_toolbar.hpp +++ b/include/widget_toolbar.hpp @@ -1,5 +1,5 @@ -#ifndef __PTF_UTIL_WIDGET_TOOLBAR_HPP__ -#define __PTF_UTIL_WIDGET_TOOLBAR_HPP__ +#ifndef __SKIZZLE_UTIL_WIDGET_TOOLBAR_HPP__ +#define __SKIZZLE_UTIL_WIDGET_TOOLBAR_HPP__ #include #include