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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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

0 commit comments

Comments
 (0)