Skip to content

Commit bb73dd3

Browse files
committed
LibRendererDll:
*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
1 parent 56c0155 commit bb73dd3

File tree

327 files changed

+6564
-4173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

327 files changed

+6564
-4173
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ bld/
2020
[Oo]bj/
2121
[Bb]in[Tt]emp/
2222

23-
*.lrm
24-
*.lrt
23+
*.s3dmdl
24+
*.s3dtex
2525

2626
*.vsasm
2727
*.psasm

GITechDemo/Build/build_data_win.py

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
import os
1+
#=============================================================================
2+
# This file is part of the "GITechDemo" application
3+
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
#
5+
# File: build_data_win.py
6+
# Author: Bogdan Iftode
7+
#
8+
# This program is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# (at your option) any later version.
12+
#
13+
# This program is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
#=============================================================================
21+
22+
import os
223
import time
324
import subprocess
425
import logging

GITechDemo/Build/build_project_win.py

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
import os
1+
#=============================================================================
2+
# This file is part of the "GITechDemo" application
3+
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
#
5+
# File: build_project_win.py
6+
# Author: Bogdan Iftode
7+
#
8+
# This program is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# (at your option) any later version.
12+
#
13+
# This program is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
#=============================================================================
21+
22+
import os
223
import sys
324
import time
425
import logging

GITechDemo/Build/build_tools_win.py

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
import os
1+
#=============================================================================
2+
# This file is part of the "GITechDemo" application
3+
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
#
5+
# File: build_tools_win.py
6+
# Author: Bogdan Iftode
7+
#
8+
# This program is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# (at your option) any later version.
12+
#
13+
# This program is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
#=============================================================================
21+
22+
import os
223
import sys
324
import time
425
import logging
@@ -26,7 +47,7 @@ def Run():
2647

2748
# List of .sln files for tools that are required for building data
2849
toolsName = [
29-
"LibRendererTools"
50+
"Synesthesia3DTools"
3051
]
3152

3253
defaultForceRebuild = False

GITechDemo/Build/utils.py

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
import os
1+
#=============================================================================
2+
# This file is part of the "GITechDemo" application
3+
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
#
5+
# File: utils.py
6+
# Author: Bogdan Iftode
7+
#
8+
# This program is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# (at your option) any later version.
12+
#
13+
# This program is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
#=============================================================================
21+
22+
import os
223
import shutil
324
import fnmatch
425
import errno

GITechDemo/Code/AppMain/Framework/App.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*=============================================================================
2+
* This file is part of the "GITechDemo" application
3+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
*
5+
* File: App.h
6+
* Author: Bogdan Iftode
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
=============================================================================*/
21+
122
#ifndef APP_H_
223
#define APP_H_
324

GITechDemo/Code/AppMain/Framework/Framework.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*=============================================================================
2+
* This file is part of the "GITechDemo" application
3+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
*
5+
* File: Framework.h
6+
* Author: Bogdan Iftode
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
=============================================================================*/
21+
122
#ifndef FRAMEWORK_H_
223
#define FRAMEWORK_H_
324

GITechDemo/Code/AppMain/Framework/Windows/FrameworkWin.cpp

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*=============================================================================
2+
* This file is part of the "GITechDemo" application
3+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
*
5+
* File: FrameworkWin.cpp
6+
* Author: Bogdan Iftode
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
=============================================================================*/
21+
122
#include "stdafx.h"
223

324
#include "Resource.h"

GITechDemo/Code/AppMain/Framework/Windows/FrameworkWin.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*=============================================================================
2+
* This file is part of the "GITechDemo" application
3+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
*
5+
* File: FrameworkWin.h
6+
* Author: Bogdan Iftode
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
=============================================================================*/
21+
122
#ifndef FRAMEWORK_WIN_H_
223
#define FRAMEWORK_WIN_H_
324

GITechDemo/Code/AppMain/Framework/Windows/stdafx.cpp

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

GITechDemo/Code/AppMain/Framework/Windows/stdafx.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*=============================================================================
2+
* This file is part of the "GITechDemo" application
3+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
*
5+
* File: stdafx.h
6+
* Author: Bogdan Iftode
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
=============================================================================*/
21+
122
// stdafx.h : include file for standard system include files,
223
// or project specific include files that are used frequently, but
324
// are changed infrequently

GITechDemo/Code/AppMain/Framework/Windows/targetver.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*=============================================================================
2+
* This file is part of the "GITechDemo" application
3+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
*
5+
* File: targetver.h
6+
* Author: Bogdan Iftode
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
=============================================================================*/
21+
122
#pragma once
223

324
// Including SDKDDKVer.h defines the highest available Windows platform.

GITechDemo/Code/AppMain/Framework/main.cpp

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*=============================================================================
2+
* This file is part of the "GITechDemo" application
3+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
4+
*
5+
* File: main.cpp
6+
* Author: Bogdan Iftode
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
=============================================================================*/
21+
122
#include "stdafx.h"
223

324
#include "FrameworkWin.h"
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
extensions: .cpp .h .inl .hlsl
2+
/*=============================================================================
3+
* This file is part of the "%Project%" application
4+
* Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
5+
*
6+
* File: %FileName%
7+
* Author: %UserDisplayName%
8+
*
9+
* This program is free software: you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation, either version 3 of the License, or
12+
* (at your option) any later version.
13+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
*
19+
* You should have received a copy of the GNU General Public License
20+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
21+
=============================================================================*/
22+
23+
extensions: .py
24+
#=============================================================================
25+
# This file is part of the "%Project%" application
26+
# Copyright (C) 2015 Iftode Bogdan-Marius <iftode.bogdan@gmail.com>
27+
#
28+
# File: %FileName%
29+
# Author: %UserDisplayName%
30+
#
31+
# This program is free software: you can redistribute it and/or modify
32+
# it under the terms of the GNU General Public License as published by
33+
# the Free Software Foundation, either version 3 of the License, or
34+
# (at your option) any later version.
35+
#
36+
# This program is distributed in the hope that it will be useful,
37+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
38+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39+
# GNU General Public License for more details.
40+
#
41+
# You should have received a copy of the GNU General Public License
42+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
43+
#=============================================================================

0 commit comments

Comments
 (0)