Skip to content

Commit

Permalink
LibRendererDll:
Browse files Browse the repository at this point in the history
*Project name changed to Synesthesia3D
*Model files now have the extension .s3dmdl
*Texture files now have the extension .s3dtex
*Updated copyright notice

GITechDemo:
*Modifications to suit the name change of Synesthesia3D
*Added copyright notice to files
  • Loading branch information
iftodebogdan committed Dec 6, 2015
1 parent 56c0155 commit bb73dd3
Show file tree
Hide file tree
Showing 327 changed files with 6,564 additions and 4,173 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ bld/
[Oo]bj/
[Bb]in[Tt]emp/

*.lrm
*.lrt
*.s3dmdl
*.s3dtex

*.vsasm
*.psasm
Expand Down
23 changes: 22 additions & 1 deletion GITechDemo/Build/build_data_win.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
import os
#=============================================================================
# This file is part of the "GITechDemo" application
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
#
# File: build_data_win.py
# Author: Bogdan Iftode
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#=============================================================================

import os
import time
import subprocess
import logging
Expand Down
23 changes: 22 additions & 1 deletion GITechDemo/Build/build_project_win.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
import os
#=============================================================================
# This file is part of the "GITechDemo" application
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
#
# File: build_project_win.py
# Author: Bogdan Iftode
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#=============================================================================

import os
import sys
import time
import logging
Expand Down
25 changes: 23 additions & 2 deletions GITechDemo/Build/build_tools_win.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
import os
#=============================================================================
# This file is part of the "GITechDemo" application
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
#
# File: build_tools_win.py
# Author: Bogdan Iftode
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#=============================================================================

import os
import sys
import time
import logging
Expand Down Expand Up @@ -26,7 +47,7 @@ def Run():

# List of .sln files for tools that are required for building data
toolsName = [
"LibRendererTools"
"Synesthesia3DTools"
]

defaultForceRebuild = False
Expand Down
23 changes: 22 additions & 1 deletion GITechDemo/Build/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
import os
#=============================================================================
# This file is part of the "GITechDemo" application
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
#
# File: utils.py
# Author: Bogdan Iftode
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#=============================================================================

import os
import shutil
import fnmatch
import errno
Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/App.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: App.h
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

#ifndef APP_H_
#define APP_H_

Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/Framework.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: Framework.h
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

#ifndef FRAMEWORK_H_
#define FRAMEWORK_H_

Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/Windows/FrameworkWin.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: FrameworkWin.cpp
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

#include "stdafx.h"

#include "Resource.h"
Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/Windows/FrameworkWin.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: FrameworkWin.h
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

#ifndef FRAMEWORK_WIN_H_
#define FRAMEWORK_WIN_H_

Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/Windows/stdafx.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: stdafx.cpp
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

// stdafx.cpp : source file that includes just the standard includes
// Framework.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/Windows/stdafx.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: stdafx.h
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/Windows/targetver.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: targetver.h
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

#pragma once

// Including SDKDDKVer.h defines the highest available Windows platform.
Expand Down
21 changes: 21 additions & 0 deletions GITechDemo/Code/AppMain/Framework/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*=============================================================================
* This file is part of the "GITechDemo" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: main.cpp
* Author: Bogdan Iftode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

#include "stdafx.h"

#include "FrameworkWin.h"
Expand Down
43 changes: 43 additions & 0 deletions GITechDemo/Code/AppMain/GITechDemo.licenseheader
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
extensions: .cpp .h .inl .hlsl
/*=============================================================================
* This file is part of the "%Project%" application
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
*
* File: %FileName%
* Author: %UserDisplayName%
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
=============================================================================*/

extensions: .py
#=============================================================================
# This file is part of the "%Project%" application
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
#
# File: %FileName%
# Author: %UserDisplayName%
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#=============================================================================

0 comments on commit bb73dd3

Please sign in to comment.