mirror of
https://github.com/minetest/irrlicht.git
synced 2025-07-04 17:20:25 +02:00
Compare commits
22 Commits
Author | SHA1 | Date | |
---|---|---|---|
fc4eda0f44 | |||
401e769114 | |||
24594ce226 | |||
ba0396e93d | |||
c9b66c8c58 | |||
8b1d0db8e2 | |||
e469c54f76 | |||
df908ef4ea | |||
01586f584a | |||
95af6d7c08 | |||
00dd274510 | |||
d59bcdbd07 | |||
09b8837ef9 | |||
4fb1c55ec5 | |||
7fb36849c7 | |||
8c0ee7d9ab | |||
684293f527 | |||
1b8be72ccb | |||
d3132e0731 | |||
e5f69157db | |||
fa2a7dc236 | |||
7d1dc8b2d5 |
38
.github/workflows/build.yml
vendored
38
.github/workflows/build.yml
vendored
@ -58,37 +58,49 @@ jobs:
|
|||||||
LIBGL_ALWAYS_SOFTWARE=true xvfb-run ./AutomatedTest
|
LIBGL_ALWAYS_SOFTWARE=true xvfb-run ./AutomatedTest
|
||||||
|
|
||||||
win32:
|
win32:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install deps
|
- name: Install compiler
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update && sudo apt-get install cmake -qyy
|
||||||
sudo apt-get install cmake g++-mingw-w64-i686 -qyy
|
wget http://minetest.kitsunemimi.pw/mingw-w64-i686_11.2.0_ubuntu20.04.tar.xz -O mingw.tar.xz
|
||||||
|
sudo tar -xaf mingw.tar.xz -C /usr
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
./scripts/ci-build-mingw.sh
|
./scripts/ci-build-mingw.sh package
|
||||||
env:
|
env:
|
||||||
CC: i686-w64-mingw32-gcc
|
CC: i686-w64-mingw32-gcc
|
||||||
CXX: i686-w64-mingw32-g++
|
CXX: i686-w64-mingw32-g++
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: irrlicht-win32
|
||||||
|
path: ./irrlicht-win32.zip
|
||||||
|
|
||||||
win64:
|
win64:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install deps
|
- name: Install compiler
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update && sudo apt-get install cmake -qyy
|
||||||
sudo apt-get install cmake g++-mingw-w64-x86-64 -qyy
|
wget http://minetest.kitsunemimi.pw/mingw-w64-x86_64_11.2.0_ubuntu20.04.tar.xz -O mingw.tar.xz
|
||||||
|
sudo tar -xaf mingw.tar.xz -C /usr
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
./scripts/ci-build-mingw.sh
|
./scripts/ci-build-mingw.sh package
|
||||||
env:
|
env:
|
||||||
CC: x86_64-w64-mingw32-gcc
|
CC: x86_64-w64-mingw32-gcc
|
||||||
CXX: x86_64-w64-mingw32-g++
|
CXX: x86_64-w64-mingw32-g++
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: irrlicht-win64
|
||||||
|
path: ./irrlicht-win64.zip
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
runs-on: macos-10.15
|
runs-on: macos-10.15
|
||||||
steps:
|
steps:
|
||||||
@ -100,5 +112,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cmake . -DCMAKE_FIND_FRAMEWORK=LAST
|
cmake . -DCMAKE_FIND_FRAMEWORK=LAST -DBUILD_EXAMPLES=1
|
||||||
make -j3
|
make -j3
|
||||||
|
|
||||||
|
- name: Test (headless)
|
||||||
|
run: |
|
||||||
|
./bin/OSX/AutomatedTest null
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.2 KiB |
@ -1,24 +0,0 @@
|
|||||||
The Win64-VisualStudio version is currently (Irrlicht 1.8) compiled with VS 2010 using the Windows 7.1 SDK as platform toolset.
|
|
||||||
You might get the necessary Windows Platform SDK here: http://msdn.microsoft.com/en-us/windows/bb980924.aspx
|
|
||||||
|
|
||||||
To link to that Irrlicht.dll you need to set platform toolset in your VS version to the same target or re-compile the Irrlicht.dll using another platform toolset.
|
|
||||||
|
|
||||||
To re-compile Irrlicht for Win32-VisualStudio:
|
|
||||||
There are several project files for different VS versions in source/Irrlicht.
|
|
||||||
Irrlicht10.0.sln is for VS 2010
|
|
||||||
Irrlicht11.0.sln is for VS 2012
|
|
||||||
Irrlicht12.0.sln is for VS 2013
|
|
||||||
|
|
||||||
To compile Irrlicht + all examples and all tools check the BuildAllExamples_*.sln files in the examples folder.
|
|
||||||
|
|
||||||
For newer VS versions you have update one of those projects (VS usually can do that automatically when you open an older solution file).
|
|
||||||
|
|
||||||
Currently each of those solutions does set the platform toolset "Windows 7.1 SDK" (to be compatible to each other).
|
|
||||||
You might want to change that in the project settings and set it to your current version.
|
|
||||||
Make sure you use the same platform toolset in your application and in the engine.
|
|
||||||
Also when compiling examples each example has to use the same platform toolset as was used for the engine.
|
|
||||||
|
|
||||||
Platform should be Win64
|
|
||||||
Configuration is by default "Release"
|
|
||||||
But you can also chose "Debug" if you want Irrlicht with Debug information.
|
|
||||||
Static builds are possible but you have to additionally set the _IRR_STATIC_LIB_ define in the application when linking to a static Irrlicht.lib
|
|
@ -9,6 +9,9 @@ Changes in ogl-es (not yet released - will be merged with trunk at some point)
|
|||||||
|
|
||||||
--------------------------
|
--------------------------
|
||||||
Changes in 1.9 (not yet released)
|
Changes in 1.9 (not yet released)
|
||||||
|
- IBillboardSceneNode got functions to access meshbuffers. So uv-coordinates can now be modified directly (previously only possible via texture matrix).
|
||||||
|
- vector3d scalar operator/ and operator/= no longer multiply by the inverse but use the expected division.
|
||||||
|
Costs some speed, but fixes floating point troubles caused by this optimization (like x/x no longer being 1.0).
|
||||||
- Add equals and set_data functions to core::array for easier working with blocks of data.
|
- Add equals and set_data functions to core::array for easier working with blocks of data.
|
||||||
- SIrrlichtCreationParameters::IgnoreInput set to false works again on X11.
|
- SIrrlichtCreationParameters::IgnoreInput set to false works again on X11.
|
||||||
Thanks @ Victor Gaydov for report + patch + very good test cases! (bug #401)
|
Thanks @ Victor Gaydov for report + patch + very good test cases! (bug #401)
|
||||||
|
@ -1,34 +0,0 @@
|
|||||||
The Irrlicht Engine may be compiled to provide support for AES encrypted files. The implementation used by Irrlicht is provided by Dr Brian Gladman. The license for these files (including AES, a PRNG, SHA, and other algorithms) is as follows
|
|
||||||
|
|
||||||
/*
|
|
||||||
---------------------------------------------------------------------------
|
|
||||||
Copyright (c) 2002, Dr Brian Gladman < >, Worcester, UK.
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
LICENSE TERMS
|
|
||||||
|
|
||||||
The free distribution and use of this software in both source and binary
|
|
||||||
form is allowed (with or without changes) provided that:
|
|
||||||
|
|
||||||
1. distributions of this source code include the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer;
|
|
||||||
|
|
||||||
2. distributions in binary form include the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer
|
|
||||||
in the documentation and/or other associated materials;
|
|
||||||
|
|
||||||
3. the copyright holder's name is not used to endorse products
|
|
||||||
built using this software without specific written permission.
|
|
||||||
|
|
||||||
ALTERNATIVELY, provided that this notice is retained in full, this product
|
|
||||||
may be distributed under the terms of the GNU General Public License (GPL),
|
|
||||||
in which case the provisions of the GPL apply INSTEAD OF those given above.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
|
|
||||||
This software is provided 'as is' with no explicit or implied warranties
|
|
||||||
in respect of its properties, including, but not limited to, correctness
|
|
||||||
and/or fitness for purpose.
|
|
||||||
---------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
|||||||
|
|
||||||
--------------------------------------------------------------------------
|
|
||||||
|
|
||||||
This program, "bzip2", the associated library "libbzip2", and all
|
|
||||||
documentation, are copyright (C) 1996-2007 Julian R Seward. All
|
|
||||||
rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
2. The origin of this software must not be misrepresented; you must
|
|
||||||
not claim that you wrote the original software. If you use this
|
|
||||||
software in a product, an acknowledgment in the product
|
|
||||||
documentation would be appreciated but is not required.
|
|
||||||
|
|
||||||
3. Altered source versions must be plainly marked as such, and must
|
|
||||||
not be misrepresented as being the original software.
|
|
||||||
|
|
||||||
4. The name of the author may not be used to endorse or promote
|
|
||||||
products derived from this software without specific prior written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
|
||||||
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
||||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
||||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
||||||
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
||||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
||||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
Julian Seward, jseward@bzip.org
|
|
||||||
bzip2/libbzip2 version 1.0.5 of 10 December 2007
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------
|
|
@ -1,351 +0,0 @@
|
|||||||
The Independent JPEG Group's JPEG software
|
|
||||||
==========================================
|
|
||||||
|
|
||||||
README for release 8d of 15-Jan-2012
|
|
||||||
====================================
|
|
||||||
|
|
||||||
This distribution contains the eighth public release of the Independent JPEG
|
|
||||||
Group's free JPEG software. You are welcome to redistribute this software and
|
|
||||||
to use it for any purpose, subject to the conditions under LEGAL ISSUES, below.
|
|
||||||
|
|
||||||
This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone,
|
|
||||||
Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson,
|
|
||||||
Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers,
|
|
||||||
and other members of the Independent JPEG Group.
|
|
||||||
|
|
||||||
IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee
|
|
||||||
(also known as JPEG, together with ITU-T SG16).
|
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION ROADMAP
|
|
||||||
=====================
|
|
||||||
|
|
||||||
This file contains the following sections:
|
|
||||||
|
|
||||||
OVERVIEW General description of JPEG and the IJG software.
|
|
||||||
LEGAL ISSUES Copyright, lack of warranty, terms of distribution.
|
|
||||||
REFERENCES Where to learn more about JPEG.
|
|
||||||
ARCHIVE LOCATIONS Where to find newer versions of this software.
|
|
||||||
ACKNOWLEDGMENTS Special thanks.
|
|
||||||
FILE FORMAT WARS Software *not* to get.
|
|
||||||
TO DO Plans for future IJG releases.
|
|
||||||
|
|
||||||
Other documentation files in the distribution are:
|
|
||||||
|
|
||||||
User documentation:
|
|
||||||
install.txt How to configure and install the IJG software.
|
|
||||||
usage.txt Usage instructions for cjpeg, djpeg, jpegtran,
|
|
||||||
rdjpgcom, and wrjpgcom.
|
|
||||||
*.1 Unix-style man pages for programs (same info as usage.txt).
|
|
||||||
wizard.txt Advanced usage instructions for JPEG wizards only.
|
|
||||||
change.log Version-to-version change highlights.
|
|
||||||
Programmer and internal documentation:
|
|
||||||
libjpeg.txt How to use the JPEG library in your own programs.
|
|
||||||
example.c Sample code for calling the JPEG library.
|
|
||||||
structure.txt Overview of the JPEG library's internal structure.
|
|
||||||
filelist.txt Road map of IJG files.
|
|
||||||
coderules.txt Coding style rules --- please read if you contribute code.
|
|
||||||
|
|
||||||
Please read at least the files install.txt and usage.txt. Some information
|
|
||||||
can also be found in the JPEG FAQ (Frequently Asked Questions) article. See
|
|
||||||
ARCHIVE LOCATIONS below to find out where to obtain the FAQ article.
|
|
||||||
|
|
||||||
If you want to understand how the JPEG code works, we suggest reading one or
|
|
||||||
more of the REFERENCES, then looking at the documentation files (in roughly
|
|
||||||
the order listed) before diving into the code.
|
|
||||||
|
|
||||||
|
|
||||||
OVERVIEW
|
|
||||||
========
|
|
||||||
|
|
||||||
This package contains C software to implement JPEG image encoding, decoding,
|
|
||||||
and transcoding. JPEG (pronounced "jay-peg") is a standardized compression
|
|
||||||
method for full-color and gray-scale images.
|
|
||||||
|
|
||||||
This software implements JPEG baseline, extended-sequential, and progressive
|
|
||||||
compression processes. Provision is made for supporting all variants of these
|
|
||||||
processes, although some uncommon parameter settings aren't implemented yet.
|
|
||||||
We have made no provision for supporting the hierarchical or lossless
|
|
||||||
processes defined in the standard.
|
|
||||||
|
|
||||||
We provide a set of library routines for reading and writing JPEG image files,
|
|
||||||
plus two sample applications "cjpeg" and "djpeg", which use the library to
|
|
||||||
perform conversion between JPEG and some other popular image file formats.
|
|
||||||
The library is intended to be reused in other applications.
|
|
||||||
|
|
||||||
In order to support file conversion and viewing software, we have included
|
|
||||||
considerable functionality beyond the bare JPEG coding/decoding capability;
|
|
||||||
for example, the color quantization modules are not strictly part of JPEG
|
|
||||||
decoding, but they are essential for output to colormapped file formats or
|
|
||||||
colormapped displays. These extra functions can be compiled out of the
|
|
||||||
library if not required for a particular application.
|
|
||||||
|
|
||||||
We have also included "jpegtran", a utility for lossless transcoding between
|
|
||||||
different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple
|
|
||||||
applications for inserting and extracting textual comments in JFIF files.
|
|
||||||
|
|
||||||
The emphasis in designing this software has been on achieving portability and
|
|
||||||
flexibility, while also making it fast enough to be useful. In particular,
|
|
||||||
the software is not intended to be read as a tutorial on JPEG. (See the
|
|
||||||
REFERENCES section for introductory material.) Rather, it is intended to
|
|
||||||
be reliable, portable, industrial-strength code. We do not claim to have
|
|
||||||
achieved that goal in every aspect of the software, but we strive for it.
|
|
||||||
|
|
||||||
We welcome the use of this software as a component of commercial products.
|
|
||||||
No royalty is required, but we do ask for an acknowledgement in product
|
|
||||||
documentation, as described under LEGAL ISSUES.
|
|
||||||
|
|
||||||
|
|
||||||
LEGAL ISSUES
|
|
||||||
============
|
|
||||||
|
|
||||||
In plain English:
|
|
||||||
|
|
||||||
1. We don't promise that this software works. (But if you find any bugs,
|
|
||||||
please let us know!)
|
|
||||||
2. You can use this software for whatever you want. You don't have to pay us.
|
|
||||||
3. You may not pretend that you wrote this software. If you use it in a
|
|
||||||
program, you must acknowledge somewhere in your documentation that
|
|
||||||
you've used the IJG code.
|
|
||||||
|
|
||||||
In legalese:
|
|
||||||
|
|
||||||
The authors make NO WARRANTY or representation, either express or implied,
|
|
||||||
with respect to this software, its quality, accuracy, merchantability, or
|
|
||||||
fitness for a particular purpose. This software is provided "AS IS", and you,
|
|
||||||
its user, assume the entire risk as to its quality and accuracy.
|
|
||||||
|
|
||||||
This software is copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding.
|
|
||||||
All Rights Reserved except as specified below.
|
|
||||||
|
|
||||||
Permission is hereby granted to use, copy, modify, and distribute this
|
|
||||||
software (or portions thereof) for any purpose, without fee, subject to these
|
|
||||||
conditions:
|
|
||||||
(1) If any part of the source code for this software is distributed, then this
|
|
||||||
README file must be included, with this copyright and no-warranty notice
|
|
||||||
unaltered; and any additions, deletions, or changes to the original files
|
|
||||||
must be clearly indicated in accompanying documentation.
|
|
||||||
(2) If only executable code is distributed, then the accompanying
|
|
||||||
documentation must state that "this software is based in part on the work of
|
|
||||||
the Independent JPEG Group".
|
|
||||||
(3) Permission for use of this software is granted only if the user accepts
|
|
||||||
full responsibility for any undesirable consequences; the authors accept
|
|
||||||
NO LIABILITY for damages of any kind.
|
|
||||||
|
|
||||||
These conditions apply to any software derived from or based on the IJG code,
|
|
||||||
not just to the unmodified library. If you use our work, you ought to
|
|
||||||
acknowledge us.
|
|
||||||
|
|
||||||
Permission is NOT granted for the use of any IJG author's name or company name
|
|
||||||
in advertising or publicity relating to this software or products derived from
|
|
||||||
it. This software may be referred to only as "the Independent JPEG Group's
|
|
||||||
software".
|
|
||||||
|
|
||||||
We specifically permit and encourage the use of this software as the basis of
|
|
||||||
commercial products, provided that all warranty or liability claims are
|
|
||||||
assumed by the product vendor.
|
|
||||||
|
|
||||||
|
|
||||||
ansi2knr.c is included in this distribution by permission of L. Peter Deutsch,
|
|
||||||
sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.
|
|
||||||
ansi2knr.c is NOT covered by the above copyright and conditions, but instead
|
|
||||||
by the usual distribution terms of the Free Software Foundation; principally,
|
|
||||||
that you must include source code if you redistribute it. (See the file
|
|
||||||
ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part
|
|
||||||
of any program generated from the IJG code, this does not limit you more than
|
|
||||||
the foregoing paragraphs do.
|
|
||||||
|
|
||||||
The Unix configuration script "configure" was produced with GNU Autoconf.
|
|
||||||
It is copyright by the Free Software Foundation but is freely distributable.
|
|
||||||
The same holds for its supporting scripts (config.guess, config.sub,
|
|
||||||
ltmain.sh). Another support script, install-sh, is copyright by X Consortium
|
|
||||||
but is also freely distributable.
|
|
||||||
|
|
||||||
The IJG distribution formerly included code to read and write GIF files.
|
|
||||||
To avoid entanglement with the Unisys LZW patent, GIF reading support has
|
|
||||||
been removed altogether, and the GIF writer has been simplified to produce
|
|
||||||
"uncompressed GIFs". This technique does not use the LZW algorithm; the
|
|
||||||
resulting GIF files are larger than usual, but are readable by all standard
|
|
||||||
GIF decoders.
|
|
||||||
|
|
||||||
We are required to state that
|
|
||||||
"The Graphics Interchange Format(c) is the Copyright property of
|
|
||||||
CompuServe Incorporated. GIF(sm) is a Service Mark property of
|
|
||||||
CompuServe Incorporated."
|
|
||||||
|
|
||||||
|
|
||||||
REFERENCES
|
|
||||||
==========
|
|
||||||
|
|
||||||
We recommend reading one or more of these references before trying to
|
|
||||||
understand the innards of the JPEG software.
|
|
||||||
|
|
||||||
The best short technical introduction to the JPEG compression algorithm is
|
|
||||||
Wallace, Gregory K. "The JPEG Still Picture Compression Standard",
|
|
||||||
Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44.
|
|
||||||
(Adjacent articles in that issue discuss MPEG motion picture compression,
|
|
||||||
applications of JPEG, and related topics.) If you don't have the CACM issue
|
|
||||||
handy, a PostScript file containing a revised version of Wallace's article is
|
|
||||||
available at http://www.ijg.org/files/wallace.ps.gz. The file (actually
|
|
||||||
a preprint for an article that appeared in IEEE Trans. Consumer Electronics)
|
|
||||||
omits the sample images that appeared in CACM, but it includes corrections
|
|
||||||
and some added material. Note: the Wallace article is copyright ACM and IEEE,
|
|
||||||
and it may not be used for commercial purposes.
|
|
||||||
|
|
||||||
A somewhat less technical, more leisurely introduction to JPEG can be found in
|
|
||||||
"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by
|
|
||||||
M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides
|
|
||||||
good explanations and example C code for a multitude of compression methods
|
|
||||||
including JPEG. It is an excellent source if you are comfortable reading C
|
|
||||||
code but don't know much about data compression in general. The book's JPEG
|
|
||||||
sample code is far from industrial-strength, but when you are ready to look
|
|
||||||
at a full implementation, you've got one here...
|
|
||||||
|
|
||||||
The best currently available description of JPEG is the textbook "JPEG Still
|
|
||||||
Image Data Compression Standard" by William B. Pennebaker and Joan L.
|
|
||||||
Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1.
|
|
||||||
Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG
|
|
||||||
standards (DIS 10918-1 and draft DIS 10918-2).
|
|
||||||
Although this is by far the most detailed and comprehensive exposition of
|
|
||||||
JPEG publicly available, we point out that it is still missing an explanation
|
|
||||||
of the most essential properties and algorithms of the underlying DCT
|
|
||||||
technology.
|
|
||||||
If you think that you know about DCT-based JPEG after reading this book,
|
|
||||||
then you are in delusion. The real fundamentals and corresponding potential
|
|
||||||
of DCT-based JPEG are not publicly known so far, and that is the reason for
|
|
||||||
all the mistaken developments taking place in the image coding domain.
|
|
||||||
|
|
||||||
The original JPEG standard is divided into two parts, Part 1 being the actual
|
|
||||||
specification, while Part 2 covers compliance testing methods. Part 1 is
|
|
||||||
titled "Digital Compression and Coding of Continuous-tone Still Images,
|
|
||||||
Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS
|
|
||||||
10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of
|
|
||||||
Continuous-tone Still Images, Part 2: Compliance testing" and has document
|
|
||||||
numbers ISO/IEC IS 10918-2, ITU-T T.83.
|
|
||||||
IJG JPEG 8 introduces an implementation of the JPEG SmartScale extension
|
|
||||||
which is specified in two documents: A contributed document at ITU and ISO
|
|
||||||
with title "ITU-T JPEG-Plus Proposal for Extending ITU-T T.81 for Advanced
|
|
||||||
Image Coding", April 2006, Geneva, Switzerland. The latest version of this
|
|
||||||
document is Revision 3. And a contributed document ISO/IEC JTC1/SC29/WG1 N
|
|
||||||
5799 with title "Evolution of JPEG", June/July 2011, Berlin, Germany.
|
|
||||||
|
|
||||||
The JPEG standard does not specify all details of an interchangeable file
|
|
||||||
format. For the omitted details we follow the "JFIF" conventions, revision
|
|
||||||
1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report
|
|
||||||
and thus received a formal publication status. It is available as a free
|
|
||||||
download in PDF format from
|
|
||||||
http://www.ecma-international.org/publications/techreports/E-TR-098.htm.
|
|
||||||
A PostScript version of the JFIF document is available at
|
|
||||||
http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at
|
|
||||||
http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures.
|
|
||||||
|
|
||||||
The TIFF 6.0 file format specification can be obtained by FTP from
|
|
||||||
ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme
|
|
||||||
found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems.
|
|
||||||
IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6).
|
|
||||||
Instead, we recommend the JPEG design proposed by TIFF Technical Note #2
|
|
||||||
(Compression tag 7). Copies of this Note can be obtained from
|
|
||||||
http://www.ijg.org/files/. It is expected that the next revision
|
|
||||||
of the TIFF spec will replace the 6.0 JPEG design with the Note's design.
|
|
||||||
Although IJG's own code does not support TIFF/JPEG, the free libtiff library
|
|
||||||
uses our library to implement TIFF/JPEG per the Note.
|
|
||||||
|
|
||||||
|
|
||||||
ARCHIVE LOCATIONS
|
|
||||||
=================
|
|
||||||
|
|
||||||
The "official" archive site for this software is www.ijg.org.
|
|
||||||
The most recent released version can always be found there in
|
|
||||||
directory "files". This particular version will be archived as
|
|
||||||
http://www.ijg.org/files/jpegsrc.v8d.tar.gz, and in Windows-compatible
|
|
||||||
"zip" archive format as http://www.ijg.org/files/jpegsr8d.zip.
|
|
||||||
|
|
||||||
The JPEG FAQ (Frequently Asked Questions) article is a source of some
|
|
||||||
general information about JPEG.
|
|
||||||
It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/
|
|
||||||
and other news.answers archive sites, including the official news.answers
|
|
||||||
archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/.
|
|
||||||
If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu
|
|
||||||
with body
|
|
||||||
send usenet/news.answers/jpeg-faq/part1
|
|
||||||
send usenet/news.answers/jpeg-faq/part2
|
|
||||||
|
|
||||||
|
|
||||||
ACKNOWLEDGMENTS
|
|
||||||
===============
|
|
||||||
|
|
||||||
Thank to Juergen Bruder for providing me with a copy of the common DCT
|
|
||||||
algorithm article, only to find out that I had come to the same result
|
|
||||||
in a more direct and comprehensible way with a more generative approach.
|
|
||||||
|
|
||||||
Thank to Istvan Sebestyen and Joan L. Mitchell for inviting me to the
|
|
||||||
ITU JPEG (Study Group 16) meeting in Geneva, Switzerland.
|
|
||||||
|
|
||||||
Thank to Thomas Wiegand and Gary Sullivan for inviting me to the
|
|
||||||
Joint Video Team (MPEG & ITU) meeting in Geneva, Switzerland.
|
|
||||||
|
|
||||||
Thank to Thomas Richter and Daniel Lee for inviting me to the
|
|
||||||
ISO/IEC JTC1/SC29/WG1 (also known as JPEG, together with ITU-T SG16)
|
|
||||||
meeting in Berlin, Germany.
|
|
||||||
|
|
||||||
Thank to John Korejwa and Massimo Ballerini for inviting me to
|
|
||||||
fruitful consultations in Boston, MA and Milan, Italy.
|
|
||||||
|
|
||||||
Thank to Hendrik Elstner, Roland Fassauer, Simone Zuck, Guenther
|
|
||||||
Maier-Gerber, Walter Stoeber, Fred Schmitz, and Norbert Braunagel
|
|
||||||
for corresponding business development.
|
|
||||||
|
|
||||||
Thank to Nico Zschach and Dirk Stelling of the technical support team
|
|
||||||
at the Digital Images company in Halle for providing me with extra
|
|
||||||
equipment for configuration tests.
|
|
||||||
|
|
||||||
Thank to Richard F. Lyon (then of Foveon Inc.) for fruitful
|
|
||||||
communication about JPEG configuration in Sigma Photo Pro software.
|
|
||||||
|
|
||||||
Thank to Andrew Finkenstadt for hosting the ijg.org site.
|
|
||||||
|
|
||||||
Last but not least special thank to Thomas G. Lane for the original
|
|
||||||
design and development of this singular software package.
|
|
||||||
|
|
||||||
|
|
||||||
FILE FORMAT WARS
|
|
||||||
================
|
|
||||||
|
|
||||||
The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together
|
|
||||||
with ITU-T SG16) currently promotes different formats containing the name
|
|
||||||
"JPEG" which is misleading because these formats are incompatible with
|
|
||||||
original DCT-based JPEG and are based on faulty technologies.
|
|
||||||
IJG therefore does not and will not support such momentary mistakes
|
|
||||||
(see REFERENCES).
|
|
||||||
There exist also distributions under the name "OpenJPEG" promoting such
|
|
||||||
kind of formats which is misleading because they don't support original
|
|
||||||
JPEG images.
|
|
||||||
We have no sympathy for the promotion of inferior formats. Indeed, one of
|
|
||||||
the original reasons for developing this free software was to help force
|
|
||||||
convergence on common, interoperable format standards for JPEG files.
|
|
||||||
Don't use an incompatible file format!
|
|
||||||
(In any case, our decoder will remain capable of reading existing JPEG
|
|
||||||
image files indefinitely.)
|
|
||||||
|
|
||||||
Furthermore, the ISO committee pretends to be "responsible for the popular
|
|
||||||
JPEG" in their public reports which is not true because they don't respond to
|
|
||||||
actual requirements for the maintenance of the original JPEG specification.
|
|
||||||
|
|
||||||
There are currently distributions in circulation containing the name
|
|
||||||
"libjpeg" which claim to be a "derivative" or "fork" of the original
|
|
||||||
libjpeg, but don't have the features and are incompatible with formats
|
|
||||||
supported by actual IJG libjpeg distributions. Furthermore, they
|
|
||||||
violate the license conditions as described under LEGAL ISSUES above.
|
|
||||||
We have no sympathy for the release of misleading and illegal
|
|
||||||
distributions derived from obsolete code bases.
|
|
||||||
Don't use an obsolete code base!
|
|
||||||
|
|
||||||
|
|
||||||
TO DO
|
|
||||||
=====
|
|
||||||
|
|
||||||
Version 8 is the first release of a new generation JPEG standard
|
|
||||||
to overcome the limitations of the original JPEG specification.
|
|
||||||
More features are being prepared for coming releases...
|
|
||||||
|
|
||||||
Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org.
|
|
@ -1,111 +0,0 @@
|
|||||||
|
|
||||||
This copy of the libpng notices is provided for your convenience. In case of
|
|
||||||
any discrepancy between this copy and the notices in the file png.h that is
|
|
||||||
included in the libpng distribution, the latter shall prevail.
|
|
||||||
|
|
||||||
COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
|
|
||||||
|
|
||||||
If you modify libpng you may insert additional notices immediately following
|
|
||||||
this sentence.
|
|
||||||
|
|
||||||
This code is released under the libpng license.
|
|
||||||
|
|
||||||
libpng versions 1.2.6, August 15, 2004, through 1.5.9, February 18, 2012, are
|
|
||||||
Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are
|
|
||||||
distributed according to the same disclaimer and license as libpng-1.2.5
|
|
||||||
with the following individual added to the list of Contributing Authors
|
|
||||||
|
|
||||||
Cosmin Truta
|
|
||||||
|
|
||||||
libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
|
|
||||||
Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
|
|
||||||
distributed according to the same disclaimer and license as libpng-1.0.6
|
|
||||||
with the following individuals added to the list of Contributing Authors
|
|
||||||
|
|
||||||
Simon-Pierre Cadieux
|
|
||||||
Eric S. Raymond
|
|
||||||
Gilles Vollant
|
|
||||||
|
|
||||||
and with the following additions to the disclaimer:
|
|
||||||
|
|
||||||
There is no warranty against interference with your enjoyment of the
|
|
||||||
library or against infringement. There is no warranty that our
|
|
||||||
efforts or the library will fulfill any of your particular purposes
|
|
||||||
or needs. This library is provided with all faults, and the entire
|
|
||||||
risk of satisfactory quality, performance, accuracy, and effort is with
|
|
||||||
the user.
|
|
||||||
|
|
||||||
libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
|
|
||||||
Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
|
|
||||||
distributed according to the same disclaimer and license as libpng-0.96,
|
|
||||||
with the following individuals added to the list of Contributing Authors:
|
|
||||||
|
|
||||||
Tom Lane
|
|
||||||
Glenn Randers-Pehrson
|
|
||||||
Willem van Schaik
|
|
||||||
|
|
||||||
libpng versions 0.89, June 1996, through 0.96, May 1997, are
|
|
||||||
Copyright (c) 1996, 1997 Andreas Dilger
|
|
||||||
Distributed according to the same disclaimer and license as libpng-0.88,
|
|
||||||
with the following individuals added to the list of Contributing Authors:
|
|
||||||
|
|
||||||
John Bowler
|
|
||||||
Kevin Bracey
|
|
||||||
Sam Bushell
|
|
||||||
Magnus Holmgren
|
|
||||||
Greg Roelofs
|
|
||||||
Tom Tanner
|
|
||||||
|
|
||||||
libpng versions 0.5, May 1995, through 0.88, January 1996, are
|
|
||||||
Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
|
|
||||||
|
|
||||||
For the purposes of this copyright and license, "Contributing Authors"
|
|
||||||
is defined as the following set of individuals:
|
|
||||||
|
|
||||||
Andreas Dilger
|
|
||||||
Dave Martindale
|
|
||||||
Guy Eric Schalnat
|
|
||||||
Paul Schmidt
|
|
||||||
Tim Wegner
|
|
||||||
|
|
||||||
The PNG Reference Library is supplied "AS IS". The Contributing Authors
|
|
||||||
and Group 42, Inc. disclaim all warranties, expressed or implied,
|
|
||||||
including, without limitation, the warranties of merchantability and of
|
|
||||||
fitness for any purpose. The Contributing Authors and Group 42, Inc.
|
|
||||||
assume no liability for direct, indirect, incidental, special, exemplary,
|
|
||||||
or consequential damages, which may result from the use of the PNG
|
|
||||||
Reference Library, even if advised of the possibility of such damage.
|
|
||||||
|
|
||||||
Permission is hereby granted to use, copy, modify, and distribute this
|
|
||||||
source code, or portions hereof, for any purpose, without fee, subject
|
|
||||||
to the following restrictions:
|
|
||||||
|
|
||||||
1. The origin of this source code must not be misrepresented.
|
|
||||||
|
|
||||||
2. Altered versions must be plainly marked as such and must not
|
|
||||||
be misrepresented as being the original source.
|
|
||||||
|
|
||||||
3. This Copyright notice may not be removed or altered from any
|
|
||||||
source or altered source distribution.
|
|
||||||
|
|
||||||
The Contributing Authors and Group 42, Inc. specifically permit, without
|
|
||||||
fee, and encourage the use of this source code as a component to
|
|
||||||
supporting the PNG file format in commercial products. If you use this
|
|
||||||
source code in a product, acknowledgment is not required but would be
|
|
||||||
appreciated.
|
|
||||||
|
|
||||||
|
|
||||||
A "png_get_copyright" function is available, for convenient use in "about"
|
|
||||||
boxes and the like:
|
|
||||||
|
|
||||||
printf("%s",png_get_copyright(NULL));
|
|
||||||
|
|
||||||
Also, the PNG logo (in PNG format, of course) is supplied in the
|
|
||||||
files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
|
|
||||||
|
|
||||||
Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a
|
|
||||||
certification mark of the Open Source Initiative.
|
|
||||||
|
|
||||||
Glenn Randers-Pehrson
|
|
||||||
glennrp at users.sourceforge.net
|
|
||||||
February 18, 2012
|
|
@ -1,2 +0,0 @@
|
|||||||
Linux Users: There are some tools at the web for reading .chm files (try http://xchm.sourceforge.net/).
|
|
||||||
You can find a html version of this documentation at http://irrlicht.sourceforge.net/docu/index.html
|
|
@ -3,6 +3,9 @@
|
|||||||
|
|
||||||
using namespace irr;
|
using namespace irr;
|
||||||
|
|
||||||
|
static IrrlichtDevice *device = nullptr;
|
||||||
|
static int test_fail = 0;
|
||||||
|
|
||||||
static video::E_DRIVER_TYPE chooseDriver(const char *arg_)
|
static video::E_DRIVER_TYPE chooseDriver(const char *arg_)
|
||||||
{
|
{
|
||||||
if (core::stringc(arg_) == "null")
|
if (core::stringc(arg_) == "null")
|
||||||
@ -15,6 +18,15 @@ static video::E_DRIVER_TYPE chooseDriver(const char *arg_)
|
|||||||
return video::EDT_OPENGL;
|
return video::EDT_OPENGL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void check(bool ok, const char *msg)
|
||||||
|
{
|
||||||
|
if (!ok)
|
||||||
|
{
|
||||||
|
test_fail++;
|
||||||
|
device->getLogger()->log((core::stringc("FAILED TEST: ") + msg).c_str(), ELL_ERROR);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
SIrrlichtCreationParameters p;
|
SIrrlichtCreationParameters p;
|
||||||
@ -23,10 +35,18 @@ int main(int argc, char *argv[])
|
|||||||
p.Vsync = true;
|
p.Vsync = true;
|
||||||
p.LoggingLevel = ELL_DEBUG;
|
p.LoggingLevel = ELL_DEBUG;
|
||||||
|
|
||||||
IrrlichtDevice *device = createDeviceEx(p);
|
device = createDeviceEx(p);
|
||||||
if (!device)
|
if (!device)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
{
|
||||||
|
u32 total = 0;
|
||||||
|
device->getOSOperator()->getSystemMemory(&total, nullptr);
|
||||||
|
core::stringc message = core::stringc("Total RAM in MiB: ") + core::stringc(total >> 10);
|
||||||
|
device->getLogger()->log(message.c_str(), ELL_INFORMATION);
|
||||||
|
check(total > 130 * 1024, "RAM amount");
|
||||||
|
}
|
||||||
|
|
||||||
device->setWindowCaption(L"Hello World!");
|
device->setWindowCaption(L"Hello World!");
|
||||||
device->setResizable(true);
|
device->setResizable(true);
|
||||||
|
|
||||||
@ -46,15 +66,19 @@ int main(int argc, char *argv[])
|
|||||||
const io::path mediaPath = getExampleMediaPath();
|
const io::path mediaPath = getExampleMediaPath();
|
||||||
|
|
||||||
scene::IAnimatedMesh* mesh = smgr->getMesh(mediaPath + "coolguy_opt.x");
|
scene::IAnimatedMesh* mesh = smgr->getMesh(mediaPath + "coolguy_opt.x");
|
||||||
if (!mesh)
|
check(mesh, "mesh loading");
|
||||||
return 1;
|
if (mesh)
|
||||||
|
{
|
||||||
|
video::ITexture* tex = driver->getTexture(mediaPath + "cooltexture.png");
|
||||||
|
check(tex, "texture loading");
|
||||||
scene::IAnimatedMeshSceneNode* node = smgr->addAnimatedMeshSceneNode(mesh);
|
scene::IAnimatedMeshSceneNode* node = smgr->addAnimatedMeshSceneNode(mesh);
|
||||||
if (node)
|
if (node)
|
||||||
{
|
{
|
||||||
node->setMaterialFlag(video::EMF_LIGHTING, false);
|
node->setMaterialFlag(video::EMF_LIGHTING, false);
|
||||||
node->setFrameLoop(0, 29);
|
node->setFrameLoop(0, 29);
|
||||||
node->setAnimationSpeed(30);
|
node->setAnimationSpeed(30);
|
||||||
node->setMaterialTexture(0, driver->getTexture(mediaPath + "cooltexture.png"));
|
node->setMaterialTexture(0, tex);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
smgr->addCameraSceneNode(0, core::vector3df(0,4,5), core::vector3df(0,2,0));
|
smgr->addCameraSceneNode(0, core::vector3df(0,4,5), core::vector3df(0,2,0));
|
||||||
@ -102,12 +126,9 @@ int main(int argc, char *argv[])
|
|||||||
driver->endScene();
|
driver->endScene();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (core::stringw(L"a") != editbox->getText()) {
|
check(core::stringw(L"a") == editbox->getText(), "EditBox text");
|
||||||
device->getLogger()->log("EditBox text mismatch", ELL_INFORMATION);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
device->getLogger()->log("Done.", ELL_INFORMATION);
|
device->getLogger()->log("Done.", ELL_INFORMATION);
|
||||||
device->drop();
|
device->drop();
|
||||||
return 0;
|
return test_fail > 0 ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ namespace scene
|
|||||||
CMeshBuffer()
|
CMeshBuffer()
|
||||||
: ChangedID_Vertex(1), ChangedID_Index(1)
|
: ChangedID_Vertex(1), ChangedID_Index(1)
|
||||||
, MappingHint_Vertex(EHM_NEVER), MappingHint_Index(EHM_NEVER)
|
, MappingHint_Vertex(EHM_NEVER), MappingHint_Index(EHM_NEVER)
|
||||||
|
, HWBuffer(NULL)
|
||||||
, PrimitiveType(EPT_TRIANGLES)
|
, PrimitiveType(EPT_TRIANGLES)
|
||||||
{
|
{
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
@ -193,8 +194,8 @@ namespace scene
|
|||||||
Vertices.reallocate(vertexCount+numVertices);
|
Vertices.reallocate(vertexCount+numVertices);
|
||||||
for (i=0; i<numVertices; ++i)
|
for (i=0; i<numVertices; ++i)
|
||||||
{
|
{
|
||||||
Vertices.push_back(reinterpret_cast<const T*>(vertices)[i]);
|
Vertices.push_back(static_cast<const T*>(vertices)[i]);
|
||||||
BoundingBox.addInternalPoint(reinterpret_cast<const T*>(vertices)[i].Pos);
|
BoundingBox.addInternalPoint(static_cast<const T*>(vertices)[i].Pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
Indices.reallocate(getIndexCount()+numIndices);
|
Indices.reallocate(getIndexCount()+numIndices);
|
||||||
@ -286,12 +287,22 @@ namespace scene
|
|||||||
/** This shouldn't be used for anything outside the VideoDriver. */
|
/** This shouldn't be used for anything outside the VideoDriver. */
|
||||||
virtual u32 getChangedID_Index() const _IRR_OVERRIDE_ {return ChangedID_Index;}
|
virtual u32 getChangedID_Index() const _IRR_OVERRIDE_ {return ChangedID_Index;}
|
||||||
|
|
||||||
|
virtual void setHWBuffer(void *ptr) const _IRR_OVERRIDE_ {
|
||||||
|
HWBuffer = ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual void *getHWBuffer() const _IRR_OVERRIDE_ {
|
||||||
|
return HWBuffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
u32 ChangedID_Vertex;
|
u32 ChangedID_Vertex;
|
||||||
u32 ChangedID_Index;
|
u32 ChangedID_Index;
|
||||||
|
|
||||||
//! hardware mapping hint
|
//! hardware mapping hint
|
||||||
E_HARDWARE_MAPPING MappingHint_Vertex;
|
E_HARDWARE_MAPPING MappingHint_Vertex;
|
||||||
E_HARDWARE_MAPPING MappingHint_Index;
|
E_HARDWARE_MAPPING MappingHint_Index;
|
||||||
|
mutable void *HWBuffer;
|
||||||
|
|
||||||
//! Material for this meshbuffer.
|
//! Material for this meshbuffer.
|
||||||
video::SMaterial Material;
|
video::SMaterial Material;
|
||||||
|
@ -12,6 +12,7 @@ namespace irr
|
|||||||
namespace scene
|
namespace scene
|
||||||
{
|
{
|
||||||
class ICameraSceneNode;
|
class ICameraSceneNode;
|
||||||
|
class IMeshBuffer;
|
||||||
|
|
||||||
//! A billboard scene node.
|
//! A billboard scene node.
|
||||||
/** A billboard is like a 3d sprite: A 2d element,
|
/** A billboard is like a 3d sprite: A 2d element,
|
||||||
@ -74,6 +75,17 @@ public:
|
|||||||
That is why the usual getBoundingBox will return a "safe" boundingbox which is guaranteed
|
That is why the usual getBoundingBox will return a "safe" boundingbox which is guaranteed
|
||||||
to contain the billboard. While this function can return the real one. */
|
to contain the billboard. While this function can return the real one. */
|
||||||
virtual const core::aabbox3d<f32>& getTransformedBillboardBoundingBox(const irr::scene::ICameraSceneNode* camera) = 0;
|
virtual const core::aabbox3d<f32>& getTransformedBillboardBoundingBox(const irr::scene::ICameraSceneNode* camera) = 0;
|
||||||
|
|
||||||
|
//! Get the amount of mesh buffers.
|
||||||
|
/** \return Amount of mesh buffers (IMeshBuffer) in this mesh. */
|
||||||
|
virtual u32 getMeshBufferCount() const = 0;
|
||||||
|
|
||||||
|
//! Get pointer to a mesh buffer.
|
||||||
|
/** NOTE: Positions and normals of this meshbuffers are re-calculated before rendering.
|
||||||
|
So this is mainly useful to access/modify the uv-coordinates.
|
||||||
|
\param nr: Zero based index of the mesh buffer.
|
||||||
|
\return Pointer to the mesh buffer or 0 if there is no such mesh buffer. */
|
||||||
|
virtual IMeshBuffer* getMeshBuffer(u32 nr) const = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace scene
|
} // end namespace scene
|
||||||
|
@ -145,6 +145,10 @@ namespace scene
|
|||||||
/** This shouldn't be used for anything outside the VideoDriver. */
|
/** This shouldn't be used for anything outside the VideoDriver. */
|
||||||
virtual u32 getChangedID_Index() const = 0;
|
virtual u32 getChangedID_Index() const = 0;
|
||||||
|
|
||||||
|
//! Used by the VideoDriver to remember the buffer link.
|
||||||
|
virtual void setHWBuffer(void *ptr) const = 0;
|
||||||
|
virtual void *getHWBuffer() const = 0;
|
||||||
|
|
||||||
//! Describe what kind of primitive geometry is used by the meshbuffer
|
//! Describe what kind of primitive geometry is used by the meshbuffer
|
||||||
/** Note: Default is EPT_TRIANGLES. Using other types is fine for rendering.
|
/** Note: Default is EPT_TRIANGLES. Using other types is fine for rendering.
|
||||||
But meshbuffer manipulation functions might expect type EPT_TRIANGLES
|
But meshbuffer manipulation functions might expect type EPT_TRIANGLES
|
||||||
|
@ -33,8 +33,8 @@ public:
|
|||||||
virtual const c8* getTextFromClipboard() const = 0;
|
virtual const c8* getTextFromClipboard() const = 0;
|
||||||
|
|
||||||
//! Get the total and available system RAM
|
//! Get the total and available system RAM
|
||||||
/** \param totalBytes: will contain the total system memory in bytes
|
/** \param totalBytes: will contain the total system memory in Kilobytes (1024 B)
|
||||||
\param availableBytes: will contain the available memory in bytes
|
\param availableBytes: will contain the available memory in Kilobytes (1024 B)
|
||||||
\return True if successful, false if not */
|
\return True if successful, false if not */
|
||||||
virtual bool getSystemMemory(u32* totalBytes, u32* availableBytes) const = 0;
|
virtual bool getSystemMemory(u32* totalBytes, u32* availableBytes) const = 0;
|
||||||
|
|
||||||
|
@ -1386,7 +1386,7 @@ namespace video
|
|||||||
you have to render some special things, you can clear the
|
you have to render some special things, you can clear the
|
||||||
zbuffer during the rendering process with this method any time.
|
zbuffer during the rendering process with this method any time.
|
||||||
*/
|
*/
|
||||||
_IRR_DEPRECATED_ void clearZBuffer()
|
void clearZBuffer()
|
||||||
{
|
{
|
||||||
clearBuffers(ECBF_DEPTH, SColor(255,0,0,0), 1.f, 0);
|
clearBuffers(ECBF_DEPTH, SColor(255,0,0,0), 1.f, 0);
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
#define __IRR_COMPILE_CONFIG_H_INCLUDED__
|
#define __IRR_COMPILE_CONFIG_H_INCLUDED__
|
||||||
|
|
||||||
//! Identifies the IrrlichtMt fork customized for the Minetest engine
|
//! Identifies the IrrlichtMt fork customized for the Minetest engine
|
||||||
#define IRRLICHT_VERSION_MT_REVISION 4
|
#define IRRLICHT_VERSION_MT_REVISION 5
|
||||||
#define IRRLICHT_VERSION_MT "mt4"
|
#define IRRLICHT_VERSION_MT "mt5"
|
||||||
|
|
||||||
//! Irrlicht SDK Version
|
//! Irrlicht SDK Version
|
||||||
#define IRRLICHT_VERSION_MAJOR 1
|
#define IRRLICHT_VERSION_MAJOR 1
|
||||||
@ -61,7 +61,7 @@
|
|||||||
//! WIN32 for Windows32
|
//! WIN32 for Windows32
|
||||||
//! WIN64 for Windows64
|
//! WIN64 for Windows64
|
||||||
// The windows platform and API support SDL and WINDOW device
|
// The windows platform and API support SDL and WINDOW device
|
||||||
#if defined(_WIN32) || defined(_WIN64) || defined(WIN32) || defined(WIN64)
|
#if defined(_WIN32) || defined(_WIN64)
|
||||||
#define _IRR_WINDOWS_
|
#define _IRR_WINDOWS_
|
||||||
#define _IRR_WINDOWS_API_
|
#define _IRR_WINDOWS_API_
|
||||||
#ifndef _IRR_COMPILE_WITH_SDL_DEVICE_
|
#ifndef _IRR_COMPILE_WITH_SDL_DEVICE_
|
||||||
@ -69,14 +69,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_MSC_VER) && (_MSC_VER < 1500)
|
#if defined(__APPLE__)
|
||||||
# error "Only Microsoft Visual Studio 9.0 and later are supported."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__APPLE__) || defined(MACOSX)
|
|
||||||
#if !defined(MACOSX)
|
|
||||||
#define MACOSX // legacy support
|
|
||||||
#endif
|
|
||||||
#if defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) || defined(__IPHONE_OS_VERSION_MIN_REQUIRED)
|
#if defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) || defined(__IPHONE_OS_VERSION_MIN_REQUIRED)
|
||||||
#define _IRR_IOS_PLATFORM_
|
#define _IRR_IOS_PLATFORM_
|
||||||
#define _IRR_COMPILE_WITH_IOS_DEVICE_
|
#define _IRR_COMPILE_WITH_IOS_DEVICE_
|
||||||
@ -181,10 +174,6 @@ If not defined, Windows Multimedia library is used, which offers also broad supp
|
|||||||
#ifdef NO_IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
|
#ifdef NO_IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
|
||||||
#undef _IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
|
#undef _IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
|
||||||
#endif
|
#endif
|
||||||
// can't get this to compile currently under borland, can be removed if someone has a better solution
|
|
||||||
#if defined(__BORLANDC__)
|
|
||||||
#undef _IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -460,7 +449,7 @@ ones. */
|
|||||||
#else // _IRR_WINDOWS_API_
|
#else // _IRR_WINDOWS_API_
|
||||||
|
|
||||||
// Force symbol export in shared libraries built with gcc.
|
// Force symbol export in shared libraries built with gcc.
|
||||||
#if (__GNUC__ >= 4) && !defined(_IRR_STATIC_LIB_) && defined(IRRLICHT_EXPORTS)
|
#if defined(__GNUC__) && !defined(_IRR_STATIC_LIB_) && defined(IRRLICHT_EXPORTS)
|
||||||
#define IRRLICHT_API __attribute__ ((visibility("default")))
|
#define IRRLICHT_API __attribute__ ((visibility("default")))
|
||||||
#else
|
#else
|
||||||
#define IRRLICHT_API
|
#define IRRLICHT_API
|
||||||
@ -480,22 +469,6 @@ ones. */
|
|||||||
#undef __IRR_HAS_S64
|
#undef __IRR_HAS_S64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__BORLANDC__)
|
|
||||||
#include <tchar.h>
|
|
||||||
|
|
||||||
// Borland 5.5.1
|
|
||||||
#if __BORLANDC__ == 0x551
|
|
||||||
#undef _tfinddata_t
|
|
||||||
#undef _tfindfirst
|
|
||||||
#undef _tfindnext
|
|
||||||
|
|
||||||
#define _tfinddata_t __tfinddata_t
|
|
||||||
#define _tfindfirst __tfindfirst
|
|
||||||
#define _tfindnext __tfindnext
|
|
||||||
typedef long intptr_t;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef __has_feature
|
#ifndef __has_feature
|
||||||
#define __has_feature(x) 0 // Compatibility with non-clang compilers.
|
#define __has_feature(x) 0 // Compatibility with non-clang compilers.
|
||||||
#endif
|
#endif
|
||||||
|
@ -301,16 +301,6 @@ namespace video
|
|||||||
FogEnable(false), NormalizeNormals(false), UseMipMaps(true)
|
FogEnable(false), NormalizeNormals(false), UseMipMaps(true)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
//! Copy constructor
|
|
||||||
/** \param other Material to copy from. */
|
|
||||||
SMaterial(const SMaterial& other)
|
|
||||||
{
|
|
||||||
// These pointers are checked during assignment
|
|
||||||
for (u32 i=0; i<MATERIAL_MAX_TEXTURES; ++i)
|
|
||||||
TextureLayer[i].TextureMatrix = 0;
|
|
||||||
*this = other;
|
|
||||||
}
|
|
||||||
|
|
||||||
//! Texture layer array.
|
//! Texture layer array.
|
||||||
SMaterialLayer TextureLayer[MATERIAL_MAX_TEXTURES];
|
SMaterialLayer TextureLayer[MATERIAL_MAX_TEXTURES];
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ struct SSkinMeshBuffer : public IMeshBuffer
|
|||||||
ChangedID_Vertex(1), ChangedID_Index(1), VertexType(vt),
|
ChangedID_Vertex(1), ChangedID_Index(1), VertexType(vt),
|
||||||
PrimitiveType(EPT_TRIANGLES),
|
PrimitiveType(EPT_TRIANGLES),
|
||||||
MappingHint_Vertex(EHM_NEVER), MappingHint_Index(EHM_NEVER),
|
MappingHint_Vertex(EHM_NEVER), MappingHint_Index(EHM_NEVER),
|
||||||
|
HWBuffer(NULL),
|
||||||
BoundingBoxNeedsRecalculated(true)
|
BoundingBoxNeedsRecalculated(true)
|
||||||
{
|
{
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
@ -383,6 +384,15 @@ struct SSkinMeshBuffer : public IMeshBuffer
|
|||||||
|
|
||||||
virtual u32 getChangedID_Index() const _IRR_OVERRIDE_ {return ChangedID_Index;}
|
virtual u32 getChangedID_Index() const _IRR_OVERRIDE_ {return ChangedID_Index;}
|
||||||
|
|
||||||
|
virtual void setHWBuffer(void *ptr) const _IRR_OVERRIDE_ {
|
||||||
|
HWBuffer = ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual void *getHWBuffer() const _IRR_OVERRIDE_ {
|
||||||
|
return HWBuffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//! Call this after changing the positions of any vertex.
|
//! Call this after changing the positions of any vertex.
|
||||||
void boundingBoxNeedsRecalculated(void) { BoundingBoxNeedsRecalculated = true; }
|
void boundingBoxNeedsRecalculated(void) { BoundingBoxNeedsRecalculated = true; }
|
||||||
|
|
||||||
@ -409,6 +419,8 @@ struct SSkinMeshBuffer : public IMeshBuffer
|
|||||||
E_HARDWARE_MAPPING MappingHint_Vertex:3;
|
E_HARDWARE_MAPPING MappingHint_Vertex:3;
|
||||||
E_HARDWARE_MAPPING MappingHint_Index:3;
|
E_HARDWARE_MAPPING MappingHint_Index:3;
|
||||||
|
|
||||||
|
mutable void *HWBuffer;
|
||||||
|
|
||||||
bool BoundingBoxNeedsRecalculated:1;
|
bool BoundingBoxNeedsRecalculated:1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -15,11 +15,6 @@ namespace irr
|
|||||||
namespace core
|
namespace core
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef DEBUG_CLIENTBLOCK
|
|
||||||
#undef DEBUG_CLIENTBLOCK
|
|
||||||
#define DEBUG_CLIENTBLOCK new
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//! Very simple allocator implementation, containers using it can be used across dll boundaries
|
//! Very simple allocator implementation, containers using it can be used across dll boundaries
|
||||||
template<typename T>
|
template<typename T>
|
||||||
class irrAllocator
|
class irrAllocator
|
||||||
@ -102,12 +97,6 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef DEBUG_CLIENTBLOCK
|
|
||||||
#undef DEBUG_CLIENTBLOCK
|
|
||||||
#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//! defines an allocation strategy (used only by irr::array so far)
|
//! defines an allocation strategy (used only by irr::array so far)
|
||||||
enum eAllocStrategy
|
enum eAllocStrategy
|
||||||
{
|
{
|
||||||
|
@ -299,22 +299,27 @@ public:
|
|||||||
return *this;
|
return *this;
|
||||||
strategy = other.strategy;
|
strategy = other.strategy;
|
||||||
|
|
||||||
|
// (TODO: we could probably avoid re-allocations of data when (allocated < other.allocated)
|
||||||
|
|
||||||
if (data)
|
if (data)
|
||||||
clear();
|
clear();
|
||||||
|
|
||||||
//if (allocated < other.allocated)
|
|
||||||
if (other.allocated == 0)
|
|
||||||
data = 0;
|
|
||||||
else
|
|
||||||
data = allocator.allocate(other.allocated); // new T[other.allocated];
|
|
||||||
|
|
||||||
used = other.used;
|
used = other.used;
|
||||||
free_when_destroyed = true;
|
free_when_destroyed = true;
|
||||||
is_sorted = other.is_sorted;
|
is_sorted = other.is_sorted;
|
||||||
allocated = other.allocated;
|
allocated = other.allocated;
|
||||||
|
|
||||||
|
if (other.allocated == 0)
|
||||||
|
{
|
||||||
|
data = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
data = allocator.allocate(other.allocated); // new T[other.allocated];
|
||||||
|
|
||||||
for (u32 i=0; i<other.used; ++i)
|
for (u32 i=0; i<other.used; ++i)
|
||||||
allocator.construct(&data[i], other.data[i]); // data[i] = other.data[i];
|
allocator.construct(&data[i], other.data[i]); // data[i] = other.data[i];
|
||||||
|
}
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
@ -61,22 +61,17 @@ typedef double f64;
|
|||||||
|
|
||||||
|
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#ifdef _IRR_WINDOWS_API_
|
|
||||||
//! Defines for s{w,n}printf_irr because s{w,n}printf methods do not match the ISO C
|
//! Defines for s{w,n}printf_irr because s{w,n}printf methods do not match the ISO C
|
||||||
//! standard on Windows platforms.
|
//! standard on Windows platforms.
|
||||||
//! We want int snprintf_irr(char *str, size_t size, const char *format, ...);
|
//! We want int snprintf_irr(char *str, size_t size, const char *format, ...);
|
||||||
//! and int swprintf_irr(wchar_t *wcs, size_t maxlen, const wchar_t *format, ...);
|
//! and int swprintf_irr(wchar_t *wcs, size_t maxlen, const wchar_t *format, ...);
|
||||||
#if defined(_MSC_VER) && _MSC_VER > 1310 && !defined (_WIN32_WCE)
|
#if defined(_MSC_VER)
|
||||||
#define swprintf_irr swprintf_s
|
#define swprintf_irr swprintf_s
|
||||||
#define snprintf_irr sprintf_s
|
#define snprintf_irr sprintf_s
|
||||||
#elif !defined(__CYGWIN__)
|
|
||||||
#define swprintf_irr _snwprintf
|
|
||||||
#define snprintf_irr _snprintf
|
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
#define swprintf_irr swprintf
|
#define swprintf_irr swprintf
|
||||||
#define snprintf_irr snprintf
|
#define snprintf_irr snprintf
|
||||||
#endif // _IRR_WINDOWS_API_
|
#endif // _MSC_VER
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
@ -89,15 +84,11 @@ namespace irr
|
|||||||
|
|
||||||
//! define a break macro for debugging.
|
//! define a break macro for debugging.
|
||||||
#if defined(_DEBUG)
|
#if defined(_DEBUG)
|
||||||
#if defined(_IRR_WINDOWS_API_) && defined(_MSC_VER) && !defined (_WIN32_WCE)
|
#if defined(_IRR_WINDOWS_API_) && defined(_MSC_VER)
|
||||||
#if defined(WIN64) || defined(_WIN64) // using portable common solution for x64 configuration
|
|
||||||
#include <crtdbg.h>
|
#include <crtdbg.h>
|
||||||
#define _IRR_DEBUG_BREAK_IF( _CONDITION_ ) if (_CONDITION_) {_CrtDbgBreak();}
|
#define _IRR_DEBUG_BREAK_IF( _CONDITION_ ) if (_CONDITION_) {_CrtDbgBreak();}
|
||||||
#else
|
#else
|
||||||
#define _IRR_DEBUG_BREAK_IF( _CONDITION_ ) if (_CONDITION_) {_asm int 3}
|
#include <assert.h>
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#include "assert.h"
|
|
||||||
#define _IRR_DEBUG_BREAK_IF( _CONDITION_ ) assert( !(_CONDITION_) );
|
#define _IRR_DEBUG_BREAK_IF( _CONDITION_ ) assert( !(_CONDITION_) );
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
@ -113,9 +104,9 @@ For functions: template<class T> _IRR_DEPRECATED_ void test4(void) {}
|
|||||||
**/
|
**/
|
||||||
#if defined(IGNORE_DEPRECATED_WARNING)
|
#if defined(IGNORE_DEPRECATED_WARNING)
|
||||||
#define _IRR_DEPRECATED_
|
#define _IRR_DEPRECATED_
|
||||||
#elif _MSC_VER >= 1310 //vs 2003 or higher
|
#elif defined(_MSC_VER)
|
||||||
#define _IRR_DEPRECATED_ __declspec(deprecated)
|
#define _IRR_DEPRECATED_ __declspec(deprecated)
|
||||||
#elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) // all versions above 3.0 should support this feature
|
#elif defined(__GNUC__)
|
||||||
#define _IRR_DEPRECATED_ __attribute__ ((deprecated))
|
#define _IRR_DEPRECATED_ __attribute__ ((deprecated))
|
||||||
#else
|
#else
|
||||||
#define _IRR_DEPRECATED_
|
#define _IRR_DEPRECATED_
|
||||||
@ -125,35 +116,7 @@ For functions: template<class T> _IRR_DEPRECATED_ void test4(void) {}
|
|||||||
/** Usage in a derived class:
|
/** Usage in a derived class:
|
||||||
virtual void somefunc() _IRR_OVERRIDE_;
|
virtual void somefunc() _IRR_OVERRIDE_;
|
||||||
*/
|
*/
|
||||||
#if ( ((__GNUC__ > 4 ) || ((__GNUC__ == 4 ) && (__GNUC_MINOR__ >= 7))) && (defined(__GXX_EXPERIMENTAL_CXX0X) || __cplusplus >= 201103L) )
|
|
||||||
#define _IRR_OVERRIDE_ override
|
#define _IRR_OVERRIDE_ override
|
||||||
#elif (_MSC_VER >= 1600 ) /* supported since MSVC 2010 */
|
|
||||||
#define _IRR_OVERRIDE_ override
|
|
||||||
#elif (__clang_major__ >= 3 && __has_feature(cxx_override_control))
|
|
||||||
#define _IRR_OVERRIDE_ override
|
|
||||||
#else
|
|
||||||
#define _IRR_OVERRIDE_
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// memory debugging
|
|
||||||
#if defined(_DEBUG) && defined(IRRLICHT_EXPORTS) && defined(_MSC_VER) && \
|
|
||||||
(_MSC_VER > 1299) && !defined(_IRR_DONT_DO_MEMORY_DEBUGGING_HERE) && !defined(_WIN32_WCE)
|
|
||||||
|
|
||||||
#define CRTDBG_MAP_ALLOC
|
|
||||||
#define _CRTDBG_MAP_ALLOC
|
|
||||||
#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <crtdbg.h>
|
|
||||||
#define new DEBUG_CLIENTBLOCK
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//! ignore VC8 warning deprecated
|
|
||||||
/** The Microsoft compiler */
|
|
||||||
#if defined(_IRR_WINDOWS_API_) && defined(_MSC_VER) && (_MSC_VER >= 1400)
|
|
||||||
//#pragma warning( disable: 4996)
|
|
||||||
//#define _CRT_SECURE_NO_DEPRECATE 1
|
|
||||||
//#define _CRT_NONSTDC_NO_DEPRECATE 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
//! creates four CC codes used in Irrlicht for simple ids
|
//! creates four CC codes used in Irrlicht for simple ids
|
||||||
|
@ -13,26 +13,13 @@
|
|||||||
// in between!
|
// in between!
|
||||||
|
|
||||||
// byte-align structures
|
// byte-align structures
|
||||||
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined (__BCPLUSPLUS__)
|
#if defined(_MSC_VER)
|
||||||
# pragma warning(disable: 4103)
|
# pragma warning(disable: 4103)
|
||||||
# pragma pack( push, packing )
|
# pragma pack( push, packing )
|
||||||
# pragma pack( 1 )
|
# pragma pack( 1 )
|
||||||
# define PACK_STRUCT
|
# define PACK_STRUCT
|
||||||
#elif defined( __DMC__ )
|
|
||||||
# pragma pack( push, 1 )
|
|
||||||
# define PACK_STRUCT
|
|
||||||
#elif defined( __GNUC__ )
|
#elif defined( __GNUC__ )
|
||||||
// Using pragma pack might work with earlier gcc versions already, but
|
|
||||||
// it started to be necessary with gcc 4.7 on mingw unless compiled with -mno-ms-bitfields.
|
|
||||||
// And I found some hints on the web that older gcc versions on the other hand had sometimes
|
|
||||||
// trouble with pragma pack while they worked with __attribute__((packed)).
|
|
||||||
# if (__GNUC__ > 4 ) || ((__GNUC__ == 4 ) && (__GNUC_MINOR__ >= 7))
|
|
||||||
# pragma pack( push, packing )
|
|
||||||
# pragma pack( 1 )
|
|
||||||
# define PACK_STRUCT
|
|
||||||
# else
|
|
||||||
# define PACK_STRUCT __attribute__((packed))
|
# define PACK_STRUCT __attribute__((packed))
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
# error compiler not supported
|
# error compiler not supported
|
||||||
#endif
|
#endif
|
||||||
|
@ -6,14 +6,8 @@
|
|||||||
// file belongs to irrpack.h, see there for more info
|
// file belongs to irrpack.h, see there for more info
|
||||||
|
|
||||||
// Default alignment
|
// Default alignment
|
||||||
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined (__BCPLUSPLUS__)
|
#if defined(_MSC_VER)
|
||||||
# pragma pack( pop, packing )
|
# pragma pack( pop, packing )
|
||||||
#elif defined (__DMC__)
|
|
||||||
# pragma pack( pop )
|
|
||||||
#elif defined( __GNUC__ )
|
|
||||||
# if (__GNUC__ > 4 ) || ((__GNUC__ == 4 ) && (__GNUC_MINOR__ >= 7))
|
|
||||||
# pragma pack( pop, packing )
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#undef PACK_STRUCT
|
#undef PACK_STRUCT
|
||||||
|
@ -102,6 +102,9 @@ namespace core
|
|||||||
//! Simple operator for linearly accessing every element of the matrix.
|
//! Simple operator for linearly accessing every element of the matrix.
|
||||||
const T& operator[](u32 index) const { return M[index]; }
|
const T& operator[](u32 index) const { return M[index]; }
|
||||||
|
|
||||||
|
//! Sets this matrix equal to the other matrix.
|
||||||
|
CMatrix4<T>& operator=(const CMatrix4<T> &other) = default;
|
||||||
|
|
||||||
//! Sets all elements of this matrix to the value.
|
//! Sets all elements of this matrix to the value.
|
||||||
inline CMatrix4<T>& operator=(const T& scalar);
|
inline CMatrix4<T>& operator=(const T& scalar);
|
||||||
|
|
||||||
|
@ -50,8 +50,8 @@ namespace core
|
|||||||
|
|
||||||
vector3d<T> operator/(const vector3d<T>& other) const { return vector3d<T>(X / other.X, Y / other.Y, Z / other.Z); }
|
vector3d<T> operator/(const vector3d<T>& other) const { return vector3d<T>(X / other.X, Y / other.Y, Z / other.Z); }
|
||||||
vector3d<T>& operator/=(const vector3d<T>& other) { X/=other.X; Y/=other.Y; Z/=other.Z; return *this; }
|
vector3d<T>& operator/=(const vector3d<T>& other) { X/=other.X; Y/=other.Y; Z/=other.Z; return *this; }
|
||||||
vector3d<T> operator/(const T v) const { T i=(T)1.0/v; return vector3d<T>(X * i, Y * i, Z * i); }
|
vector3d<T> operator/(const T v) const { return vector3d<T>(X/v, Y/v, Z/v); }
|
||||||
vector3d<T>& operator/=(const T v) { T i=(T)1.0/v; X*=i; Y*=i; Z*=i; return *this; }
|
vector3d<T>& operator/=(const T v) { X/=v; Y/=v; Z/=v; return *this; }
|
||||||
|
|
||||||
T& operator [](u32 index)
|
T& operator [](u32 index)
|
||||||
{
|
{
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
You might have to recompile the engine to get library files in here.
|
|
||||||
Check the readme.txt in the corresponding bin folders for more information.
|
|
@ -5,25 +5,27 @@
|
|||||||
variant=win32
|
variant=win32
|
||||||
[[ "$(basename "$CXX")" == "x86_64-"* ]] && variant=win64
|
[[ "$(basename "$CXX")" == "x86_64-"* ]] && variant=win64
|
||||||
|
|
||||||
libjpeg_version=2.0.6
|
libjpeg_version=2.1.2
|
||||||
libpng_version=1.6.37
|
libpng_version=1.6.37
|
||||||
zlib_version=1.2.11
|
zlib_version=1.2.11
|
||||||
|
|
||||||
mkdir -p libs
|
mkdir -p libs
|
||||||
pushd libs
|
pushd libs
|
||||||
libs=$PWD
|
libs=$PWD
|
||||||
|
tmp=
|
||||||
|
[ "$variant" = win32 ] && tmp=dw2/
|
||||||
[ -e libjpeg.zip ] || \
|
[ -e libjpeg.zip ] || \
|
||||||
wget "http://minetest.kitsunemimi.pw/libjpeg-$libjpeg_version-$variant.zip" -O libjpeg.zip
|
wget "http://minetest.kitsunemimi.pw/libjpeg-$libjpeg_version-$variant.zip" -O libjpeg.zip
|
||||||
[ -e libpng.zip ] || \
|
[ -e libpng.zip ] || \
|
||||||
wget "http://minetest.kitsunemimi.pw/libpng-$libpng_version-$variant.zip" -O libpng.zip
|
wget "http://minetest.kitsunemimi.pw/${tmp}libpng-$libpng_version-$variant.zip" -O libpng.zip
|
||||||
[ -e zlib.zip ] || \
|
[ -e zlib.zip ] || \
|
||||||
wget "http://minetest.kitsunemimi.pw/zlib-$zlib_version-$variant.zip" -O zlib.zip
|
wget "http://minetest.kitsunemimi.pw/${tmp}zlib-$zlib_version-$variant.zip" -O zlib.zip
|
||||||
[ -d libjpeg ] || unzip -o libjpeg.zip -d libjpeg
|
[ -d libjpeg ] || unzip -o libjpeg.zip -d libjpeg
|
||||||
[ -d libpng ] || unzip -o libpng.zip -d libpng
|
[ -d libpng ] || unzip -o libpng.zip -d libpng
|
||||||
[ -d zlib ] || unzip -o zlib.zip -d zlib
|
[ -d zlib ] || unzip -o zlib.zip -d zlib
|
||||||
popd
|
popd
|
||||||
|
|
||||||
cmake . \
|
tmp=(
|
||||||
-DCMAKE_SYSTEM_NAME=Windows \
|
-DCMAKE_SYSTEM_NAME=Windows \
|
||||||
-DPNG_LIBRARY=$libs/libpng/lib/libpng.dll.a \
|
-DPNG_LIBRARY=$libs/libpng/lib/libpng.dll.a \
|
||||||
-DPNG_PNG_INCLUDE_DIR=$libs/libpng/include \
|
-DPNG_PNG_INCLUDE_DIR=$libs/libpng/include \
|
||||||
@ -31,6 +33,18 @@ cmake . \
|
|||||||
-DJPEG_INCLUDE_DIR=$libs/libjpeg/include \
|
-DJPEG_INCLUDE_DIR=$libs/libjpeg/include \
|
||||||
-DZLIB_LIBRARY=$libs/zlib/lib/libz.dll.a \
|
-DZLIB_LIBRARY=$libs/zlib/lib/libz.dll.a \
|
||||||
-DZLIB_INCLUDE_DIR=$libs/zlib/include
|
-DZLIB_INCLUDE_DIR=$libs/zlib/include
|
||||||
|
)
|
||||||
|
|
||||||
|
cmake . "${tmp[@]}"
|
||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
|
|
||||||
|
if [ "$1" = "package" ]; then
|
||||||
|
make DESTDIR=$PWD/_install install
|
||||||
|
# strip library
|
||||||
|
"${CXX%-*}-strip" --strip-unneeded _install/usr/local/lib/*.dll
|
||||||
|
# bundle the DLLs that are specific to Irrlicht (kind of a hack)
|
||||||
|
cp -p $libs/*/bin/lib{jpeg,png}*.dll _install/usr/local/lib/
|
||||||
|
# create a ZIP
|
||||||
|
(cd _install/usr/local; zip -9r "$OLDPWD"/irrlicht-$variant.zip -- *)
|
||||||
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,18 +0,0 @@
|
|||||||
<!--BEGIN GENERATE_TREEVIEW-->
|
|
||||||
<li class="footer">
|
|
||||||
<a href="http://irrlicht.sourceforge.net" target="_blank">Irrlicht
|
|
||||||
Engine</a> Documentation © 2003-2019 by Nikolaus Gebhardt. $generatedby
|
|
||||||
<a href="http://www.doxygen.org/index.html" target="_blank">Doxygen</a> $doxygenversion </li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<!--END GENERATE_TREEVIEW-->
|
|
||||||
<!--BEGIN !GENERATE_TREEVIEW-->
|
|
||||||
<hr class="footer"/><address class="footer"><small>
|
|
||||||
<a href="http://irrlicht.sourceforge.net" target="_blank">Irrlicht
|
|
||||||
Engine</a> Documentation © 2003-2019 by Nikolaus Gebhardt. $generatedby
|
|
||||||
<a href="http://www.doxygen.org/index.html" target="_blank">Doxygen
|
|
||||||
</a> $doxygenversion
|
|
||||||
</small></address>
|
|
||||||
<!--END !GENERATE_TREEVIEW-->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 12 KiB |
Binary file not shown.
Before Width: | Height: | Size: 7.0 KiB |
@ -1,44 +0,0 @@
|
|||||||
mkdir ..\..\..\doctemp
|
|
||||||
mkdir ..\..\..\doctemp\html
|
|
||||||
copy doxygen.css ..\..\..\doctemp\html
|
|
||||||
copy irrlicht.png ..\..\..\doctemp\html
|
|
||||||
copy logobig.png ..\..\..\doctemp\html
|
|
||||||
|
|
||||||
rem enable following line for skipping tutorial generation (can be used for faster testing documentation layout)
|
|
||||||
rem goto SKIP_TUTS
|
|
||||||
|
|
||||||
rem for /F %%i in ('dir ..\..\..\examples\[01]*\main.cpp') DO ..\sed.exe -f tutorials.sed %i >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\01.HelloWorld\main.cpp >tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\02.Quake3Map\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\03.CustomSceneNode\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\04.Movement\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\05.UserInterface\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\06.2DGraphics\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\07.Collision\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\08.SpecialFX\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\09.MeshViewer\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\10.Shaders\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\11.PerPixelLighting\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\12.TerrainRendering\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\13.RenderToTexture\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\14.Win32Window\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\15.LoadIrrFile\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\16.Quake3MapShader\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\17.HelloWorld_Mobile\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\18.SplitScreen\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\19.MouseAndJoystick\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\20.ManagedLights\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\21.Quake3Explorer\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\22.MaterialViewer\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\23.SMeshHandling\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\24.CursorControl\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\25.XmlHandling\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\26.OcclusionQuery\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\27.PostProcessing\main.cpp >>tut.txt
|
|
||||||
..\sed.exe -f tutorials.sed ..\..\..\examples\28.CubeMapping\main.cpp >>tut.txt
|
|
||||||
|
|
||||||
:SKIP_TUTS
|
|
||||||
|
|
||||||
..\doxygen.exe doxygen.cfg
|
|
||||||
|
|
||||||
pause
|
|
@ -1,20 +0,0 @@
|
|||||||
mkdir -p ../../../doctemp/html
|
|
||||||
|
|
||||||
rm tut.txt || true;
|
|
||||||
|
|
||||||
mkdir ../../../doctemp
|
|
||||||
mkdir ../../../doctemp/html
|
|
||||||
cp doxygen.css irrlicht.png logobig.png ../../../doctemp/html
|
|
||||||
|
|
||||||
for i in ../../../examples/[012]*/main.cpp; do
|
|
||||||
sed -f tutorials.sed $i >>tut.txt;
|
|
||||||
done
|
|
||||||
|
|
||||||
# Enable for latex docs
|
|
||||||
#doxygen doxygen-pdf.cfg
|
|
||||||
|
|
||||||
# Enable for html docs
|
|
||||||
doxygen doxygen.cfg
|
|
||||||
|
|
||||||
#cp doxygen.css ../../../doctemp/html
|
|
||||||
cp irrlicht.png logobig.png ../../../doctemp/html
|
|
@ -1,7 +0,0 @@
|
|||||||
# run on single_tut.txt which is created in maketutorial.sh (or .bat)
|
|
||||||
|
|
||||||
# replace image links as we don't copy the images into example folders but keep them below media folder
|
|
||||||
# most images should be in media
|
|
||||||
s/img src="/img src="..\/..\/media\//g
|
|
||||||
# ???shots.jpg files are in media/example_screenshots another subfolder (earlier replacement already moved them to ../../media/)
|
|
||||||
s/img src="..\/..\/media\/\([0-9]\{3\}shot\)/img src="..\/..\/media\/example_screenshots\/\1/
|
|
@ -1,4 +0,0 @@
|
|||||||
REM OUTDATED - don't use this anymore. For now only maketutorial.sh works, this one still has to be updated.
|
|
||||||
REM type tut_head.html >%2
|
|
||||||
REM ..\sed.exe -f maketut.sed %1 >>%2
|
|
||||||
REM type tut_end.html >>%2
|
|
@ -1,34 +0,0 @@
|
|||||||
# Create the tutorial.html files in each example folder
|
|
||||||
|
|
||||||
# for every folder below examples
|
|
||||||
for i in ../../../examples/[0123]*; do
|
|
||||||
#for i in ../../../examples/01.*; do # if you want to run/update a single example use this loop
|
|
||||||
echo NOW doing $i
|
|
||||||
|
|
||||||
if ! [ -f "$i/main.cpp" ]; then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
|
|
||||||
# uses the main.cpp files to create some file to use as doxygen input
|
|
||||||
sed -f tutorials.sed $i/main.cpp >single_tut.txt
|
|
||||||
# echo tutorials.sed has run
|
|
||||||
|
|
||||||
# create the html file
|
|
||||||
doxygen doxygen_tutorial.cfg
|
|
||||||
# echo doxygen has run
|
|
||||||
|
|
||||||
# Fix the image links
|
|
||||||
sed -f maketut.sed html/example???.html >tutorial.html
|
|
||||||
# echo maketut.sed has run
|
|
||||||
|
|
||||||
#move to example folder
|
|
||||||
mv tutorial.html $i/tutorial.html
|
|
||||||
# echo copied
|
|
||||||
|
|
||||||
#cleanup
|
|
||||||
rm -r html
|
|
||||||
# echo cleaned
|
|
||||||
done
|
|
||||||
|
|
||||||
#cleanup
|
|
||||||
rm single_tut.txt
|
|
@ -1,5 +0,0 @@
|
|||||||
<!-- HTML footer for doxygen 1.8.13-->
|
|
||||||
<!-- start footer part -->
|
|
||||||
<p> </p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,228 +0,0 @@
|
|||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
|
||||||
<meta name="generator" content="Doxygen $doxygenversion"/>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
||||||
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
|
|
||||||
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
||||||
|
|
||||||
<!-- Wanted to avoid copying .css to each folder, so copied default .css from doxyen in here, kicked out most stuff we don't need for examples and modified some a little bit.
|
|
||||||
Target was having a single html in each example folder which is created from the main.cpp files and needs no files besides some images below media folder.
|
|
||||||
Feel free to improve :)
|
|
||||||
-->
|
|
||||||
<style>
|
|
||||||
body, table, div, p, dl {
|
|
||||||
font: 400 14px/22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: #F0F0F0;
|
|
||||||
color: black;
|
|
||||||
margin-left: 5%;
|
|
||||||
margin-right: 5%;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.reference, p.definition {
|
|
||||||
font: 400 14px/22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font: 400 14px/28px;
|
|
||||||
font-size: 150%;
|
|
||||||
font-weight: bold;
|
|
||||||
margin: 10px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
|
||||||
-webkit-transition: text-shadow 0.5s linear;
|
|
||||||
-moz-transition: text-shadow 0.5s linear;
|
|
||||||
-ms-transition: text-shadow 0.5s linear;
|
|
||||||
-o-transition: text-shadow 0.5s linear;
|
|
||||||
transition: text-shadow 0.5s linear;
|
|
||||||
margin-right: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
caption {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3.version {
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #3D578C;
|
|
||||||
font-weight: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contents a:visited {
|
|
||||||
color: #4665A2;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.el {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.code, a.code:visited, a.line, a.line:visited {
|
|
||||||
color: #4665A2;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited {
|
|
||||||
color: #4665A2;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre.fragment {
|
|
||||||
border: 1px solid #C4CFE5;
|
|
||||||
background-color: #FBFCFD;
|
|
||||||
padding: 4px 6px;
|
|
||||||
margin: 4px 8px 4px 2px;
|
|
||||||
overflow: auto;
|
|
||||||
word-wrap: break-word;
|
|
||||||
font-size: 9pt;
|
|
||||||
line-height: 125%;
|
|
||||||
font-family: monospace, fixed;
|
|
||||||
font-size: 105%;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.fragment {
|
|
||||||
padding: 0px;
|
|
||||||
margin: 4px 8px 4px 2px;
|
|
||||||
background-color: #FBFCFD;
|
|
||||||
border: 1px solid #C4CFE5;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.line {
|
|
||||||
font-family: monospace, fixed;
|
|
||||||
font-size: 13px;
|
|
||||||
min-height: 13px;
|
|
||||||
line-height: 1.0;
|
|
||||||
text-wrap: unrestricted;
|
|
||||||
white-space: -moz-pre-wrap; /* Moz */
|
|
||||||
white-space: -pre-wrap; /* Opera 4-6 */
|
|
||||||
white-space: -o-pre-wrap; /* Opera 7 */
|
|
||||||
white-space: pre-wrap; /* CSS3 */
|
|
||||||
word-wrap: break-word; /* IE 5.5+ */
|
|
||||||
text-indent: -53px;
|
|
||||||
padding-left: 53px;
|
|
||||||
padding-bottom: 0px;
|
|
||||||
margin: 0px;
|
|
||||||
-webkit-transition-property: background-color, box-shadow;
|
|
||||||
-webkit-transition-duration: 0.5s;
|
|
||||||
-moz-transition-property: background-color, box-shadow;
|
|
||||||
-moz-transition-duration: 0.5s;
|
|
||||||
-ms-transition-property: background-color, box-shadow;
|
|
||||||
-ms-transition-duration: 0.5s;
|
|
||||||
-o-transition-property: background-color, box-shadow;
|
|
||||||
-o-transition-duration: 0.5s;
|
|
||||||
transition-property: background-color, box-shadow;
|
|
||||||
transition-duration: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.contents {
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-left: 12px;
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.center {
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 0px;
|
|
||||||
margin-bottom: 0px;
|
|
||||||
padding: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.center img {
|
|
||||||
border: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.keyword {
|
|
||||||
color: #008000
|
|
||||||
}
|
|
||||||
|
|
||||||
span.keywordtype {
|
|
||||||
color: #604020
|
|
||||||
}
|
|
||||||
|
|
||||||
span.keywordflow {
|
|
||||||
color: #e08000
|
|
||||||
}
|
|
||||||
|
|
||||||
span.comment {
|
|
||||||
color: #800000
|
|
||||||
}
|
|
||||||
|
|
||||||
span.preprocessor {
|
|
||||||
color: #806020
|
|
||||||
}
|
|
||||||
|
|
||||||
span.stringliteral {
|
|
||||||
color: #002080
|
|
||||||
}
|
|
||||||
|
|
||||||
span.charliteral {
|
|
||||||
color: #008080
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
|
||||||
background-color: #F7F8FB;
|
|
||||||
border-left: 2px solid #9CAFD4;
|
|
||||||
margin: 0 24px 0 4px;
|
|
||||||
padding: 0 12px 0 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
height: 0px;
|
|
||||||
border: none;
|
|
||||||
border-top: 1px solid #4A6AAA;
|
|
||||||
}
|
|
||||||
|
|
||||||
address {
|
|
||||||
font-style: normal;
|
|
||||||
color: #2A3D61;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.header {
|
|
||||||
background-image:url('nav_h.png');
|
|
||||||
background-repeat:repeat-x;
|
|
||||||
background-color: #F9FAFC;
|
|
||||||
margin: 0px;
|
|
||||||
border-bottom: 1px solid #C4CFE5;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.headertitle {
|
|
||||||
padding: 5px 5px 5px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.caption {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.zoom {
|
|
||||||
border: 1px solid #90A5CE;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.heading h2 {
|
|
||||||
margin-top: 12px;
|
|
||||||
margin-bottom: 4px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
|
||||||
|
|
||||||
<!--END TITLEAREA-->
|
|
||||||
<!-- end header part -->
|
|
@ -1,13 +0,0 @@
|
|||||||
# Page start and end are delimited by /** and **/
|
|
||||||
# we keep the end unchanged, the header is extended
|
|
||||||
s/\/\*\* Example \(0*\)\([0-9]*\) \(.*\)$/\/\*\* \\page example\1\2 Tutorial \2: \3\n \\image html \"\1\2shot.jpg\"\n \\image latex \"\1\2shot.jpg\"/
|
|
||||||
|
|
||||||
# All other comments start and end code sections
|
|
||||||
s/\([^\*]\)\*\//\1\\code/
|
|
||||||
s/^\*\//\\code/
|
|
||||||
|
|
||||||
s/\/\*\([^\*]\)/\\endcode \1/
|
|
||||||
s/\/\*$/\\endcode\n/
|
|
||||||
|
|
||||||
#remove DOS line endings
|
|
||||||
s/\r//g
|
|
Binary file not shown.
@ -1,9 +0,0 @@
|
|||||||
GNU sed version 4.0.7 - compiled for Win32.
|
|
||||||
Native executable requires only the Microsoft
|
|
||||||
C runtime MSVCRT.DLL, not an emulation layer
|
|
||||||
like Cygwin. This .EXE file was obtained from
|
|
||||||
http://unxutils.sourceforge.net on 2003-10-21.
|
|
||||||
For documentation, GPL license, source code,
|
|
||||||
etc., visit http://unxutils.sourceforge.net.
|
|
||||||
|
|
||||||
Downloaded from http://www.student.northpark.edu/pemente/sed/
|
|
@ -1,324 +0,0 @@
|
|||||||
# Copyright (c) 2007-2011 oc2pus
|
|
||||||
# This file and all modifications and additions to the pristine
|
|
||||||
# package are under the same license as the package itself.
|
|
||||||
#
|
|
||||||
# Please submit bugfixes or comments to toni@links2linux.de
|
|
||||||
|
|
||||||
# Packmangroup: Libraries
|
|
||||||
# Packmanpackagename: Irrlicht
|
|
||||||
# Packman: Toni Graffy
|
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
Name: libIrrlicht1
|
|
||||||
Version: 1.9.0
|
|
||||||
Release: 0.pm.1
|
|
||||||
Summary: The Irrlicht Engine SDK
|
|
||||||
License: see readme.txt
|
|
||||||
Group: System/Libraries
|
|
||||||
URL: http://irrlicht.sourceforge.net/
|
|
||||||
Source: irrlicht-%{version}.tar.bz2
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: freeglut-devel
|
|
||||||
BuildRequires: ImageMagick
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
%if %suse_version >= 1020
|
|
||||||
BuildRequires: Mesa-devel
|
|
||||||
%else
|
|
||||||
BuildRequires: xorg-x11-devel
|
|
||||||
%endif
|
|
||||||
BuildRequires: update-desktop-files
|
|
||||||
|
|
||||||
%description
|
|
||||||
The Irrlicht Engine is an open source high performance realtime 3d engine
|
|
||||||
written and usable in C++. It is completely cross-platform, using D3D, OpenGL
|
|
||||||
and its own software renderer, and has all of the state-of-the-art features
|
|
||||||
which can be found in commercial 3d engines.
|
|
||||||
|
|
||||||
We've got a huge active community, and there are lots of projects in
|
|
||||||
development that use the engine. You can find enhancements for Irrlicht all
|
|
||||||
over the web, like alternative terrain renderers, portal renderers, exporters,
|
|
||||||
world layers, tutorials, editors, language bindings for .NET, Java, Perl, Ruby,
|
|
||||||
Basic, Python, Lua, and so on. And best of all: It's completely free.
|
|
||||||
|
|
||||||
%package -n libIrrlicht-devel
|
|
||||||
Summary: Development package for the Irrlicht library
|
|
||||||
Group: Development/Languages/C and C++
|
|
||||||
Requires: libIrrlicht1 = %{version}
|
|
||||||
# Packmandepends: libIrrlicht1
|
|
||||||
|
|
||||||
%description -n libIrrlicht-devel
|
|
||||||
The Irrlicht Engine is an open source high performance realtime 3d engine
|
|
||||||
written and usable in C++. It is completely cross-platform, using D3D, OpenGL
|
|
||||||
and its own software renderer, and has all of the state-of-the-art features
|
|
||||||
which can be found in commercial 3d engines.
|
|
||||||
|
|
||||||
We've got a huge active community, and there are lots of projects in
|
|
||||||
development that use the engine. You can find enhancements for Irrlicht all
|
|
||||||
over the web, like alternative terrain renderers, portal renderers, exporters,
|
|
||||||
world layers, tutorials, editors, language bindings for .NET, Java, Perl, Ruby,
|
|
||||||
Basic, Python, Lua, and so on. And best of all: It's completely free.
|
|
||||||
|
|
||||||
%package -n Irrlicht-examples
|
|
||||||
Summary: Demos and examples for the Irrlicht-SDK
|
|
||||||
Group: Development/Tools/GUI Builders
|
|
||||||
Requires: libIrrlicht1 = %{version}
|
|
||||||
# Packmandepends: Irrlicht-media libIrrlicht1
|
|
||||||
|
|
||||||
%description -n Irrlicht-examples
|
|
||||||
The Irrlicht Engine is an open source high performance realtime 3d engine
|
|
||||||
written and usable in C++. It is completely cross-platform, using D3D, OpenGL
|
|
||||||
and its own software renderer, and has all of the state-of-the-art features
|
|
||||||
which can be found in commercial 3d engines.
|
|
||||||
|
|
||||||
We've got a huge active community, and there are lots of projects in
|
|
||||||
development that use the engine. You can find enhancements for Irrlicht all
|
|
||||||
over the web, like alternative terrain renderers, portal renderers, exporters,
|
|
||||||
world layers, tutorials, editors, language bindings for .NET, Java, Perl, Ruby,
|
|
||||||
Basic, Python, Lua, and so on. And best of all: It's completely free.
|
|
||||||
|
|
||||||
This package contains some demos and examples for the Irrlicht-SDK.
|
|
||||||
|
|
||||||
%package -n Irrlicht-doc
|
|
||||||
Summary: User documentation for the Irrlicht SDK.
|
|
||||||
Group: Documentation/Other
|
|
||||||
|
|
||||||
%description -n Irrlicht-doc
|
|
||||||
User documentation for the Irrlicht SDK.
|
|
||||||
|
|
||||||
You need a chm-viewer to read the docs (e.g. kchmviewer).
|
|
||||||
|
|
||||||
%package -n Irrlicht-tools
|
|
||||||
Summary: Some tools for the Irrlicht-SDK
|
|
||||||
Group: Development/Tools/GUI Builders
|
|
||||||
Requires: libIrrlicht1 = %{version}
|
|
||||||
Requires: Irrlicht-media
|
|
||||||
# Packmandepends: Irrlicht-media libIrrlicht1
|
|
||||||
|
|
||||||
%description -n Irrlicht-tools
|
|
||||||
Some tools for the Irrlicht-SDK.
|
|
||||||
|
|
||||||
GUIEditor, FontTool and Meshviewer.
|
|
||||||
|
|
||||||
%package -n Irrlicht-media
|
|
||||||
Summary: Some media files for Irrlicht SDK
|
|
||||||
Group: Development/Languages/C and C++
|
|
||||||
|
|
||||||
%description -n Irrlicht-media
|
|
||||||
Some media files for Irrlicht tools and demos.
|
|
||||||
|
|
||||||
%debug_package
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q -n irrlicht-%{version}
|
|
||||||
|
|
||||||
# only for windows-platform
|
|
||||||
%__rm -r examples/14.Win32Window
|
|
||||||
|
|
||||||
# avoid irrKlang
|
|
||||||
%__sed -i -e 's|^#define USE_IRRKLANG|//#define USE_IRRKLANG|g' \
|
|
||||||
examples/Demo/CDemo.h
|
|
||||||
|
|
||||||
# adjust media path in examples
|
|
||||||
find ./examples -name *.cpp | xargs %__sed -i -e 's|../../media/|%{_datadir}/irrlicht/|g'
|
|
||||||
# adjust media path in tools
|
|
||||||
%__sed -i -e 's|../../media/|%{_datadir}/irrlicht/|g' \
|
|
||||||
tools/GUIEditor/main.cpp
|
|
||||||
|
|
||||||
# pack example-sources
|
|
||||||
tar cj \
|
|
||||||
--exclude *.cbp \
|
|
||||||
--exclude *.dev \
|
|
||||||
--exclude *.dsp \
|
|
||||||
--exclude *.dsw \
|
|
||||||
--exclude *.html \
|
|
||||||
--exclude *.sln \
|
|
||||||
--exclude *.vcproj \
|
|
||||||
-f irrlicht-examples-src.tar.bz2 examples/*
|
|
||||||
|
|
||||||
%build
|
|
||||||
# create shared-lib first
|
|
||||||
pushd source/Irrlicht
|
|
||||||
%__make sharedlib %{?_smp_mflags}
|
|
||||||
popd
|
|
||||||
|
|
||||||
# create necessary links to avoid linker-error for tools/examples
|
|
||||||
pushd lib/Linux
|
|
||||||
ln -s libIrrlicht.so.%{version} libIrrlicht.so.1
|
|
||||||
ln -s libIrrlicht.so.%{version} libIrrlicht.so
|
|
||||||
popd
|
|
||||||
|
|
||||||
# tools
|
|
||||||
pushd tools
|
|
||||||
cd GUIEditor
|
|
||||||
%__make %{?_smp_mflags}
|
|
||||||
cd ..
|
|
||||||
cd IrrFontTool/newFontTool
|
|
||||||
%__make %{?_smp_mflags}
|
|
||||||
cd ../..
|
|
||||||
popd
|
|
||||||
|
|
||||||
# examples
|
|
||||||
pushd examples
|
|
||||||
sh buildAllExamples.sh
|
|
||||||
popd
|
|
||||||
|
|
||||||
# build static lib
|
|
||||||
pushd source/Irrlicht
|
|
||||||
%__make %{?_smp_mflags}
|
|
||||||
popd
|
|
||||||
|
|
||||||
%install
|
|
||||||
%__install -dm 755 %{buildroot}%{_libdir}
|
|
||||||
%__install -m 644 lib/Linux/libIrrlicht.a \
|
|
||||||
%{buildroot}%{_libdir}
|
|
||||||
%__install -m 644 lib/Linux/libIrrlicht.so.%{version} \
|
|
||||||
%{buildroot}%{_libdir}
|
|
||||||
|
|
||||||
pushd %{buildroot}%{_libdir}
|
|
||||||
ln -s libIrrlicht.so.%{version} libIrrlicht.so.1
|
|
||||||
ln -s libIrrlicht.so.%{version} libIrrlicht.so
|
|
||||||
popd
|
|
||||||
|
|
||||||
# includes
|
|
||||||
%__install -dm 755 %{buildroot}%{_includedir}/irrlicht
|
|
||||||
%__install -m 644 include/*.h \
|
|
||||||
%{buildroot}%{_includedir}/irrlicht
|
|
||||||
|
|
||||||
# tools
|
|
||||||
%__install -dm 755 %{buildroot}%{_bindir}
|
|
||||||
%__install -m 755 tools/GUIEditor/GUIEditor \
|
|
||||||
%{buildroot}%{_bindir}/irrlicht-GUIEditor
|
|
||||||
%__install -m 755 bin/Linux/FontTool \
|
|
||||||
%{buildroot}%{_bindir}/irrlicht-FontTool
|
|
||||||
|
|
||||||
# examples
|
|
||||||
%__install -dm 755 %{buildroot}%{_bindir}
|
|
||||||
ex_list=`ls -1 bin/Linux/??.*`
|
|
||||||
for i in $ex_list; do
|
|
||||||
FE=`echo $i | awk 'BEGIN { FS="." }{ print $2 }'`
|
|
||||||
%__install -m 755 $i \
|
|
||||||
%{buildroot}%{_bindir}/irrlicht-$FE
|
|
||||||
done
|
|
||||||
|
|
||||||
# examples-docs
|
|
||||||
pushd examples
|
|
||||||
%__install -dm 755 %{buildroot}%{_docdir}/Irrlicht-examples
|
|
||||||
ex_dir=`find . -name tutorial.html`
|
|
||||||
for i in $ex_dir; do
|
|
||||||
dir_name=`dirname $i`
|
|
||||||
%__install -dm 755 %{buildroot}%{_docdir}/Irrlicht-examples/$dir_name
|
|
||||||
%__install -m 644 $i \
|
|
||||||
%{buildroot}%{_docdir}/Irrlicht-examples/$dir_name
|
|
||||||
done
|
|
||||||
%__rm -r %{buildroot}%{_docdir}/Irrlicht-examples/09.Meshviewer
|
|
||||||
popd
|
|
||||||
|
|
||||||
# examples sources
|
|
||||||
%__install -m 644 irrlicht-examples-src.tar.bz2 \
|
|
||||||
%{buildroot}%{_docdir}/Irrlicht-examples
|
|
||||||
|
|
||||||
# media
|
|
||||||
%__install -dm 755 %{buildroot}%{_datadir}/irrlicht
|
|
||||||
%__install -m 755 media/* \
|
|
||||||
%{buildroot}%{_datadir}/irrlicht
|
|
||||||
|
|
||||||
# icons
|
|
||||||
%__install -dm 755 %{buildroot}%{_datadir}/pixmaps
|
|
||||||
convert examples/09.Meshviewer/icon.ico -resize 48x48! \
|
|
||||||
irrlicht-Meshviewer.png
|
|
||||||
convert bin/Win32-gcc/irrlicht.ico -resize 48x48! \
|
|
||||||
irrlicht.png
|
|
||||||
%__install -m 644 irrlicht*.png \
|
|
||||||
%{buildroot}%{_datadir}/pixmaps
|
|
||||||
|
|
||||||
# menu-entries
|
|
||||||
%__cat > irrlicht-GUIEditor.desktop << EOF
|
|
||||||
[Desktop Entry]
|
|
||||||
Comment=Irrlicht GUI Editor
|
|
||||||
Name=Irrlicht GUI Editor
|
|
||||||
GenericName=
|
|
||||||
Type=Application
|
|
||||||
Exec=irrlicht-GUIEditor
|
|
||||||
Icon=irrlicht.png
|
|
||||||
DocPath=
|
|
||||||
Terminal=0
|
|
||||||
EOF
|
|
||||||
%suse_update_desktop_file -i irrlicht-GUIEditor Development GUIDesigner
|
|
||||||
|
|
||||||
%__cat > irrlicht-FontTool.desktop << EOF
|
|
||||||
[Desktop Entry]
|
|
||||||
Comment=Irrlicht-FontTool
|
|
||||||
Name=Irrlicht-FontTool
|
|
||||||
GenericName=
|
|
||||||
Type=Application
|
|
||||||
Exec=irrlicht-IrrFontTool
|
|
||||||
Icon=irrlicht.png
|
|
||||||
DocPath=
|
|
||||||
Terminal=0
|
|
||||||
EOF
|
|
||||||
%suse_update_desktop_file -i irrlicht-FontTool Development GUIDesigner
|
|
||||||
|
|
||||||
%__cat > irrlicht-Meshviewer.desktop << EOF
|
|
||||||
[Desktop Entry]
|
|
||||||
Comment=Irrlicht-Meshviewer
|
|
||||||
Name=Irrlicht-Meshviewer
|
|
||||||
GenericName=
|
|
||||||
Type=Application
|
|
||||||
Exec=irrlicht-Meshviewer
|
|
||||||
Icon=irrlicht-Meshviewer.png
|
|
||||||
DocPath=
|
|
||||||
Terminal=1
|
|
||||||
EOF
|
|
||||||
%suse_update_desktop_file -i irrlicht-Meshviewer Graphics Viewer
|
|
||||||
|
|
||||||
%clean
|
|
||||||
[ -d %{buildroot} -a "%{buildroot}" != "" ] && %__rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%doc *.txt
|
|
||||||
%{_libdir}/lib*.so.*
|
|
||||||
|
|
||||||
%files -n libIrrlicht-devel
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%{_libdir}/lib*.so
|
|
||||||
%{_libdir}/lib*.a
|
|
||||||
%dir %{_includedir}/irrlicht
|
|
||||||
%{_includedir}/irrlicht/*.h
|
|
||||||
|
|
||||||
%files -n Irrlicht-examples
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%dir %{_docdir}/Irrlicht-examples
|
|
||||||
%{_docdir}/Irrlicht-examples/*
|
|
||||||
%exclude %{_bindir}/irrlicht-GUIEditor
|
|
||||||
%exclude %{_bindir}/irrlicht-FontTool
|
|
||||||
%exclude %{_bindir}/irrlicht-Meshviewer
|
|
||||||
%{_bindir}/irrlicht-*
|
|
||||||
|
|
||||||
%files -n Irrlicht-tools
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%doc examples/09.Meshviewer/tutorial.html
|
|
||||||
%{_bindir}/irrlicht-GUIEditor
|
|
||||||
%{_bindir}/irrlicht-FontTool
|
|
||||||
%{_bindir}/irrlicht-Meshviewer
|
|
||||||
%{_datadir}/applications/irrlicht-GUIEditor.desktop
|
|
||||||
%{_datadir}/applications/irrlicht-FontTool.desktop
|
|
||||||
%{_datadir}/applications/irrlicht-Meshviewer.desktop
|
|
||||||
%{_datadir}/pixmaps/irrlicht*.png
|
|
||||||
|
|
||||||
%files -n Irrlicht-doc
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%doc doc/irrlicht.chm
|
|
||||||
%doc doc/*.txt
|
|
||||||
|
|
||||||
%files -n Irrlicht-media
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%dir %{_datadir}/irrlicht
|
|
||||||
%{_datadir}/irrlicht/*
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Wed Jun 20 2007 Toni Graffy <toni@links2linux.de> - 1.3.1-0.pm.1
|
|
||||||
- update to 1.3.1
|
|
||||||
* Sat Jun 16 2007 Toni Graffy <toni@links2linux.de> - 1.3-0.pm.1
|
|
||||||
- initial build 1.3
|
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
<pkgref spec="1.12" uuid="2386F932-20DF-4969-AC74-D8E599723083"><config><identifier>org.irrlichtengine.irrlichtEngineV151.irrlicht.pkg</identifier><version>1</version><description></description><post-install type="none"/><requireAuthorization/><installFrom includeRoot="true">/Library/Frameworks/Irrlicht.framework</installFrom><installTo>/Library/Frameworks</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>parent</mod><mod>requireAuthorization</mod><mod>extraFiles</mod><mod>version</mod><mod>installTo</mod><mod>identifier</mod></config><contents><file-list>01irrlicht-contents.xml</file-list><component id="org.irrlichtengine.Irrlicht" path="/Library/Frameworks/Irrlicht.framework" version="1.6"><component id="org.irrlichtengine.Irrlicht" path="/Library/Frameworks/Irrlicht.framework/Versions/1.5" version="1.6"/></component><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents><extra-files/></pkgref>
|
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
<pkgref spec="1.12" uuid="39601D70-59FA-4C66-9AFF-A8523FAD4C7D"><config><identifier>com.irrlicht.irrlichtEngineV151.html.pkg</identifier><version>1</version><description></description><post-install type="none"/><installFrom relative="true">../../../doctemp/html</installFrom><installTo mod="true">/private/tmp/Irrlicht1.5.1-install/doc/</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>parent</mod><mod>scripts.postinstall.path</mod><mod>requireAuthorization</mod><mod>installTo.isAbsoluteType</mod><mod>scripts.postinstall.isRelativeType</mod><mod>installFrom.isRelativeType</mod><mod>installTo.path</mod><mod>version</mod><mod>installTo</mod></config><contents><file-list>02html-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents></pkgref>
|
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
<pkgref spec="1.12" uuid="C29A053C-0445-485A-8194-7261BB730C44"><config><identifier>com.irrlicht.irrlichtEngineV151.media.pkg</identifier><version>1</version><description/><post-install type="none"/><requireAuthorization/><installFrom>/Users/gazdavidson/svn/irr1.5/media</installFrom><installTo mod="true">/private/tmp/Irrlicht1.5.1-install/media/</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo.path</mod><mod>installTo</mod></config><contents><file-list>03media-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents></pkgref>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
<pkgref spec="1.12" uuid="90910AF1-E4E6-4A7B-BE2C-D5651EB803FD"><config><identifier>com.irrlicht.irrlichtEngineV151.tools.pkg</identifier><version>1</version><description/><post-install type="none"/><requireAuthorization/><installFrom>/Users/gazdavidson/svn/irr1.5/tools</installFrom><installTo mod="true">/private/tmp/Irrlicht1.5.1-install/tools/</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo.path</mod><mod>installTo</mod></config><contents><file-list>05tools-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents></pkgref>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
<pkg-contents spec="1.12"><f n="changes.txt" o="gazdavidson" g="staff" p="33188" pt="/Users/gazdavidson/svn/irr1.5/changes.txt" m="false" t="file"/></pkg-contents>
|
|
@ -1 +0,0 @@
|
|||||||
<pkgref spec="1.12" uuid="6023EA57-F1C6-45DA-B563-D72F5E02D7EA"><config><identifier>com.irrlicht.irrlichtEngineV151.changes.pkg</identifier><version>1</version><description/><post-install type="none"/><requireAuthorization/><installFrom>/Users/gazdavidson/svn/irr1.5/changes.txt</installFrom><installTo mod="true">/private/tmp/Irrlicht1.5.1-install/</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>installTo.path</mod><mod>installTo</mod></config><contents><file-list>07changes-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents></pkgref>
|
|
@ -1 +0,0 @@
|
|||||||
<pkg-contents spec="1.12"><f n="readme.txt" o="gazdavidson" g="staff" p="33188" pt="/Users/gazdavidson/svn/irr1.5/readme.txt" m="false" t="file"/></pkg-contents>
|
|
@ -1 +0,0 @@
|
|||||||
<pkgref spec="1.12" uuid="C1B685D8-ECDF-4CE4-A672-82B0F1C0EC80"><config><identifier>com.irrlicht.irrlichtEngineV151.readme.pkg</identifier><version>1</version><description/><post-install type="none"/><requireAuthorization/><installFrom>/Users/gazdavidson/svn/irr1.5/readme.txt</installFrom><installTo mod="true">/private/tmp/Irrlicht1.5.1-install/</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"/><mod>parent</mod><mod>scripts.postinstall.path</mod><mod>scripts.postupgrade.isRelativeType</mod><mod>scripts.postupgrade.path</mod><mod>installTo.path</mod><mod>installTo</mod></config><scripts><postinstall relative="true" mod="true">moveAll.sh</postinstall><postupgrade relative="true" mod="true">moveAll.sh</postupgrade></scripts><contents><file-list>08readme-contents.xml</file-list><filter>/CVS$</filter><filter>/\.svn$</filter><filter>/\.cvsignore$</filter><filter>/\.cvspass$</filter><filter>/\.DS_Store$</filter></contents></pkgref>
|
|
@ -1,47 +0,0 @@
|
|||||||
<pkmkdoc spec="1.12"><properties><title>Irrlicht Engine v1.5.1</title><build>/Users/gazdavidson/Desktop/installer/Irrlicht v1.5.1.mpkg</build><organization>com.irrlicht</organization><userSees ui="easy"/><min-target os="2"/><domain system="true"/></properties><distribution><versions min-spec="1.000000"/><scripts></scripts></distribution><contents><choice title="Irrlicht.framework" id="installframework" description="This is required, unless you want to build from source." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="org.irrlichtengine.irrlichtEngineV151.irrlicht.pkg"/></choice><choice title="Documentation" id="installdocs" description="This will install the documentation" starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="com.irrlicht.irrlichtEngineV151.html.pkg"/></choice><choice title="Example media" id="installmedia" description="The media for the examples, without this the examples will not run." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="com.irrlicht.irrlichtEngineV151.media.pkg"/></choice><choice title="Examples" id="installexamples" description="The examples, which you'll need if you want to get started." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="com.irrlicht.irrlichtEngineV151.examples.pkg"/></choice><choice title="Tools" id="installtools" description="Some useful tools; GUI editor, mesh converter and bitmap font generator" starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="com.irrlicht.irrlichtEngineV151.tools.pkg"/></choice><choice title="Source code" id="installsource" description="The complete source code to the Irrlicht Engine, this allows you to make changes to the core and make your own custom versions of Irrlicht." starts_selected="true" starts_enabled="true" starts_hidden="false"><pkgref id="com.irrlicht.irrlichtEngineV151.source.pkg"/></choice><choice title="changes" id="installchangelog" starts_selected="true" starts_enabled="true" starts_hidden="true"><pkgref id="com.irrlicht.irrlichtEngineV151.changes.pkg"/></choice><choice title="readme" id="installreadme" starts_selected="true" starts_enabled="true" starts_hidden="true"><pkgref id="com.irrlicht.irrlichtEngineV151.readme.pkg"/></choice></contents><resources bg-scale="none" bg-align="topleft"><locale lang="en"><resource mime-type="text/rtf" kind="embedded" type="license"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf430
|
|
||||||
{\fonttbl\f0\fnil\fcharset0 Verdana;}
|
|
||||||
{\colortbl;\red255\green255\blue255;}
|
|
||||||
{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{decimal\}.}{\leveltext\leveltemplateid0\'02\'05.;}{\levelnumbers\'01;}}{\listname ;}\listid1}}
|
|
||||||
{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}}
|
|
||||||
\deftab720
|
|
||||||
\pard\pardeftab720\sl320\sa220\ql\qnatural
|
|
||||||
|
|
||||||
\f0\fs22 \cf0 The Irrlicht Engine License\
|
|
||||||
Copyright \'a9 2002-2009 Nikolaus Gebhardt\
|
|
||||||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.\
|
|
||||||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:\
|
|
||||||
\pard\tx220\tx720\pardeftab720\li720\fi-720\sl320\ql\qnatural
|
|
||||||
\ls1\ilvl0\cf0 {\listtext 1. }The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.\
|
|
||||||
{\listtext 2. }Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\
|
|
||||||
{\listtext 3. }This notice may not be removed or altered from any source distribution.}]]></resource><resource mime-type="text/rtf" kind="embedded" type="readme"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf430
|
|
||||||
{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
|
|
||||||
{\colortbl;\red255\green255\blue255;}
|
|
||||||
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
|
|
||||||
|
|
||||||
\f0\fs26 \cf0 The Irrlicht Engine is a cross platform, high performance 3D scene graph API for C++ programmers.\
|
|
||||||
\
|
|
||||||
This package contains:\
|
|
||||||
\
|
|
||||||
* The library runtime. This installs to /Library/Frameworks/Irrlicht.framework and allows you to create and run Irrlicht 3D applications.\
|
|
||||||
\
|
|
||||||
* The examples and project files, which will allow you to get started developing Irrlicht applications.\
|
|
||||||
\
|
|
||||||
* The documentation, which is also available online at http://irrlicht.sourceforge.net/\
|
|
||||||
\
|
|
||||||
* The source to the engine, so that you can modify the engine itself.}]]></resource></locale><locale lang="fr"><resource mime-type="text/rtf" kind="embedded" type="readme"><![CDATA[{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf430
|
|
||||||
{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
|
|
||||||
{\colortbl;\red255\green255\blue255;}
|
|
||||||
\deftab720
|
|
||||||
\pard\pardeftab720\ql\qnatural
|
|
||||||
|
|
||||||
\f0\fs24 \cf0 Le moteur Irrlicht est une API de rendu 3D tr\'e8s performante pour les programmeurs C++.\
|
|
||||||
\
|
|
||||||
Ce paquet contient:\
|
|
||||||
\
|
|
||||||
* La biblioth\'e8que de runtime. Ceci s'installe vers /Library/Frameworks/Irrlicht.framework et vous permet de cr\'e9er et de lancer des applications Irrlicht, notamment en 3d.\
|
|
||||||
\
|
|
||||||
* Les exemples et les projets, qui vous permettront de commencer \'e0 d\'e9velopper des applications Irrlicht.\
|
|
||||||
\
|
|
||||||
* La documentation, qui est aussi disponible sur http://irrlicht.sourceforge.net/\
|
|
||||||
\
|
|
||||||
* Les sources du moteur, afin que vous puissiez modifier le moteur vous-m\'eame.}]]></resource></locale></resources><flags/><extra-files/><item type="file">01irrlicht.xml</item><item type="file">02html.xml</item><item type="file">03media.xml</item><item type="file">04examples.xml</item><item type="file">05tools.xml</item><item type="file">06source.xml</item><item type="file">07changes.xml</item><item type="file">08readme.xml</item><mod>properties.userDomain</mod><mod>properties.systemDomain</mod><mod>properties.anywhereDomain</mod><mod>properties.customizeOption</mod><mod>extraFiles</mod><mod>properties.title</mod></pkmkdoc>
|
|
@ -1,6 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
mkdir -p $HOME/Irrlicht1.6.0/
|
|
||||||
chmod a+rw $HOME/Irrlicht1.6.0
|
|
||||||
find /private/tmp/Irrlicht1.6.0-install -exec chmod a+rw {} \;
|
|
||||||
cp -rfp /private/tmp/Irrlicht1.6.0-install/ $HOME/Irrlicht1.6.0/
|
|
||||||
rm -Rf /private/tmp/Irrlicht1.6.0-install
|
|
@ -1,28 +0,0 @@
|
|||||||
This is the source package for the Irrlicht framework installer.
|
|
||||||
|
|
||||||
Build steps are as follows-
|
|
||||||
|
|
||||||
1) Remove the framework so you don't accidentally package more than one version, if you use the GUI to do this empty the trash so XCode doesn't build to the trash! It's best to run this command from the console:
|
|
||||||
|
|
||||||
rm -Rf /Library/Frameworks/Irrlicht.framework
|
|
||||||
|
|
||||||
2) Build the library and the binaries.
|
|
||||||
|
|
||||||
* Navigate to source/Irrlicht/MacOSX and open the XCode project
|
|
||||||
|
|
||||||
* Choose release mode and build Irrlicht.framework
|
|
||||||
|
|
||||||
** For the moment it's not worth installing the sample binaries, they can't be launched due to console input
|
|
||||||
|
|
||||||
3) Build the documentation
|
|
||||||
|
|
||||||
* Open the console and navigate to scripts/doc/irrlicht
|
|
||||||
|
|
||||||
* Make sure you have doxygen installed. If you have Aptitude for OSX then type:
|
|
||||||
|
|
||||||
sudo apt-get install doxygen
|
|
||||||
|
|
||||||
* Now run the makedocumentation bash script:
|
|
||||||
./makedocumentation.sh
|
|
||||||
|
|
||||||
4) Now double click the package file and build it.
|
|
@ -192,7 +192,7 @@ IMesh * CAnimatedMeshSceneNode::getMeshForCurrentFrame()
|
|||||||
// As multiple scene nodes may be sharing the same skinned mesh, we have to
|
// As multiple scene nodes may be sharing the same skinned mesh, we have to
|
||||||
// re-animate it every frame to ensure that this node gets the mesh that it needs.
|
// re-animate it every frame to ensure that this node gets the mesh that it needs.
|
||||||
|
|
||||||
CSkinnedMesh* skinnedMesh = reinterpret_cast<CSkinnedMesh*>(Mesh);
|
CSkinnedMesh* skinnedMesh = static_cast<CSkinnedMesh*>(Mesh);
|
||||||
|
|
||||||
if (JointMode == EJUOR_CONTROL)//write to mesh
|
if (JointMode == EJUOR_CONTROL)//write to mesh
|
||||||
skinnedMesh->transferJointsToMesh(JointChildSceneNodes);
|
skinnedMesh->transferJointsToMesh(JointChildSceneNodes);
|
||||||
@ -747,7 +747,7 @@ void CAnimatedMeshSceneNode::animateJoints(bool CalculateAbsolutePositions)
|
|||||||
checkJoints();
|
checkJoints();
|
||||||
const f32 frame = getFrameNr(); //old?
|
const f32 frame = getFrameNr(); //old?
|
||||||
|
|
||||||
CSkinnedMesh* skinnedMesh=reinterpret_cast<CSkinnedMesh*>(Mesh);
|
CSkinnedMesh* skinnedMesh=static_cast<CSkinnedMesh*>(Mesh);
|
||||||
|
|
||||||
skinnedMesh->transferOnlyJointsHintsToMesh( JointChildSceneNodes );
|
skinnedMesh->transferOnlyJointsHintsToMesh( JointChildSceneNodes );
|
||||||
skinnedMesh->animateMesh(frame, 1.0f);
|
skinnedMesh->animateMesh(frame, 1.0f);
|
||||||
|
@ -72,6 +72,20 @@ public:
|
|||||||
//! Get the real boundingbox used by the billboard (which depends on the active camera)
|
//! Get the real boundingbox used by the billboard (which depends on the active camera)
|
||||||
virtual const core::aabbox3d<f32>& getTransformedBillboardBoundingBox(const irr::scene::ICameraSceneNode* camera) _IRR_OVERRIDE_;
|
virtual const core::aabbox3d<f32>& getTransformedBillboardBoundingBox(const irr::scene::ICameraSceneNode* camera) _IRR_OVERRIDE_;
|
||||||
|
|
||||||
|
//! Get the amount of mesh buffers.
|
||||||
|
virtual u32 getMeshBufferCount() const _IRR_OVERRIDE_
|
||||||
|
{
|
||||||
|
return Buffer ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Get pointer to the mesh buffer.
|
||||||
|
virtual IMeshBuffer* getMeshBuffer(u32 nr) const _IRR_OVERRIDE_
|
||||||
|
{
|
||||||
|
if ( nr == 0 )
|
||||||
|
return Buffer;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
//! Returns type of the scene node
|
//! Returns type of the scene node
|
||||||
virtual ESCENE_NODE_TYPE getType() const _IRR_OVERRIDE_ { return ESNT_BILLBOARD; }
|
virtual ESCENE_NODE_TYPE getType() const _IRR_OVERRIDE_ { return ESNT_BILLBOARD; }
|
||||||
|
|
||||||
|
@ -15,10 +15,6 @@
|
|||||||
#include "SExposedVideoData.h"
|
#include "SExposedVideoData.h"
|
||||||
#include "IContextManager.h"
|
#include "IContextManager.h"
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma comment(lib, "libEGL.lib")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
namespace video
|
namespace video
|
||||||
|
@ -23,11 +23,9 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined (_IRR_WINDOWS_API_)
|
#if defined (_IRR_WINDOWS_API_)
|
||||||
#if !defined ( _WIN32_WCE )
|
|
||||||
#include <direct.h> // for _chdir
|
#include <direct.h> // for _chdir
|
||||||
#include <io.h> // for _access
|
#include <io.h> // for _access
|
||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
#endif
|
|
||||||
#elif (defined(_IRR_POSIX_API_) || defined(_IRR_OSX_PLATFORM_) || defined(_IRR_IOS_PLATFORM_) || defined(_IRR_ANDROID_PLATFORM_))
|
#elif (defined(_IRR_POSIX_API_) || defined(_IRR_OSX_PLATFORM_) || defined(_IRR_IOS_PLATFORM_) || defined(_IRR_ANDROID_PLATFORM_))
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -797,7 +795,6 @@ IFileList* CFileSystem::createFileList()
|
|||||||
// --------------------------------------------
|
// --------------------------------------------
|
||||||
//! Windows version
|
//! Windows version
|
||||||
#ifdef _IRR_WINDOWS_API_
|
#ifdef _IRR_WINDOWS_API_
|
||||||
#if !defined ( _WIN32_WCE )
|
|
||||||
|
|
||||||
r = new CFileList(Path, true, false);
|
r = new CFileList(Path, true, false);
|
||||||
|
|
||||||
@ -819,12 +816,7 @@ IFileList* CFileSystem::createFileList()
|
|||||||
|
|
||||||
_findclose( hFile );
|
_findclose( hFile );
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
//TODO add drives
|
|
||||||
//entry.Name = "E:\\";
|
|
||||||
//entry.isDirectory = true;
|
|
||||||
//Files.push_back(entry);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// --------------------------------------------
|
// --------------------------------------------
|
||||||
|
@ -313,12 +313,34 @@ void CGLXManager::destroySurface()
|
|||||||
|
|
||||||
bool CGLXManager::generateContext()
|
bool CGLXManager::generateContext()
|
||||||
{
|
{
|
||||||
GLXContext context;
|
GLXContext context = 0;
|
||||||
|
|
||||||
if (glxFBConfig)
|
if (glxFBConfig)
|
||||||
{
|
{
|
||||||
if (GlxWin)
|
if (GlxWin)
|
||||||
{
|
{
|
||||||
|
#if defined(GLX_ARB_create_context)
|
||||||
|
|
||||||
|
#ifdef _IRR_OPENGL_USE_EXTPOINTER_
|
||||||
|
PFNGLXCREATECONTEXTATTRIBSARBPROC glxCreateContextAttribsARB=(PFNGLXCREATECONTEXTATTRIBSARBPROC)glXGetProcAddress(reinterpret_cast<const GLubyte*>("glXCreateContextAttribsARB"));
|
||||||
|
#else
|
||||||
|
PFNGLXCREATECONTEXTATTRIBSARBPROC glxCreateContextAttribsARB=glXCreateContextAttribsARB;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (glxCreateContextAttribsARB)
|
||||||
|
{
|
||||||
|
int contextAttrBuffer[] = {
|
||||||
|
GLX_CONTEXT_MAJOR_VERSION_ARB, 3,
|
||||||
|
GLX_CONTEXT_MINOR_VERSION_ARB, 0,
|
||||||
|
// GLX_CONTEXT_PROFILE_MASK_ARB, GLX_CONTEXT_CORE_PROFILE_BIT_ARB,
|
||||||
|
None
|
||||||
|
};
|
||||||
|
context = glxCreateContextAttribsARB((Display*)CurrentContext.OpenGLLinux.X11Display, (GLXFBConfig)glxFBConfig, NULL, True, contextAttrBuffer);
|
||||||
|
// transparently fall back to legacy call
|
||||||
|
}
|
||||||
|
if (!context)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
// create glx context
|
// create glx context
|
||||||
context = glXCreateNewContext((Display*)CurrentContext.OpenGLLinux.X11Display, (GLXFBConfig)glxFBConfig, GLX_RGBA_TYPE, NULL, True);
|
context = glXCreateNewContext((Display*)CurrentContext.OpenGLLinux.X11Display, (GLXFBConfig)glxFBConfig, GLX_RGBA_TYPE, NULL, True);
|
||||||
if (!context)
|
if (!context)
|
||||||
@ -327,6 +349,7 @@ bool CGLXManager::generateContext()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
os::Printer::log("GLX window was not properly created.", ELL_WARNING);
|
os::Printer::log("GLX window was not properly created.", ELL_WARNING);
|
||||||
|
@ -18,9 +18,7 @@
|
|||||||
|
|
||||||
#ifdef _IRR_WINDOWS_API_
|
#ifdef _IRR_WINDOWS_API_
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#if !defined(_IRR_XBOX_PLATFORM_)
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
|
||||||
#define _IRR_WINDOWS_NT_CONSOLE_
|
#define _IRR_WINDOWS_NT_CONSOLE_
|
||||||
#else
|
#else
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
@ -1701,7 +1701,7 @@ bool CIrrDeviceLinux::activateJoysticks(core::array<SJoystickInfo> & joystickInf
|
|||||||
for (joystick = 0; joystick < joystickInfo.size(); ++joystick)
|
for (joystick = 0; joystick < joystickInfo.size(); ++joystick)
|
||||||
{
|
{
|
||||||
char logString[256];
|
char logString[256];
|
||||||
(void)sprintf(logString, "Found joystick %u, %u axes, %u buttons '%s'",
|
snprintf_irr(logString, sizeof(logString), "Found joystick %d, %d axes, %d buttons '%s'",
|
||||||
joystick, joystickInfo[joystick].Axes,
|
joystick, joystickInfo[joystick].Axes,
|
||||||
joystickInfo[joystick].Buttons, joystickInfo[joystick].Name.c_str());
|
joystickInfo[joystick].Buttons, joystickInfo[joystick].Name.c_str());
|
||||||
os::Printer::log(logString, ELL_INFORMATION);
|
os::Printer::log(logString, ELL_INFORMATION);
|
||||||
|
@ -553,7 +553,6 @@ CIrrDeviceMacOSX::CIrrDeviceMacOSX(const SIrrlichtCreationParameters& param)
|
|||||||
IsActive(true), IsFullscreen(false), IsShiftDown(false), IsControlDown(false), IsResizable(false)
|
IsActive(true), IsFullscreen(false), IsShiftDown(false), IsControlDown(false), IsResizable(false)
|
||||||
{
|
{
|
||||||
struct utsname name;
|
struct utsname name;
|
||||||
NSString *path;
|
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
setDebugName("CIrrDeviceMacOSX");
|
setDebugName("CIrrDeviceMacOSX");
|
||||||
@ -572,6 +571,8 @@ CIrrDeviceMacOSX::CIrrDeviceMacOSX(const SIrrlichtCreationParameters& param)
|
|||||||
// Create menu
|
// Create menu
|
||||||
|
|
||||||
NSString* bundleName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleName"];
|
NSString* bundleName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleName"];
|
||||||
|
if (bundleName == nil)
|
||||||
|
bundleName = @"Irrlicht";
|
||||||
|
|
||||||
NSMenu* mainMenu = [[[NSMenu alloc] initWithTitle:@"MainMenu"] autorelease];
|
NSMenu* mainMenu = [[[NSMenu alloc] initWithTitle:@"MainMenu"] autorelease];
|
||||||
NSMenu* menu = [[[NSMenu alloc] initWithTitle:bundleName] autorelease];
|
NSMenu* menu = [[[NSMenu alloc] initWithTitle:bundleName] autorelease];
|
||||||
@ -585,11 +586,13 @@ CIrrDeviceMacOSX::CIrrDeviceMacOSX(const SIrrlichtCreationParameters& param)
|
|||||||
[NSApp finishLaunching];
|
[NSApp finishLaunching];
|
||||||
}
|
}
|
||||||
|
|
||||||
path = [[NSBundle mainBundle] bundlePath];
|
NSString *path = [[NSBundle mainBundle] bundlePath];
|
||||||
|
if (path != nil) {
|
||||||
path = [path stringByAppendingString:@"/Contents/Resources"];
|
path = [path stringByAppendingString:@"/Contents/Resources"];
|
||||||
chdir([path fileSystemRepresentation]);
|
chdir([path fileSystemRepresentation]);
|
||||||
[path release];
|
[path release];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
uname(&name);
|
uname(&name);
|
||||||
Operator = new COSOperator(name.version);
|
Operator = new COSOperator(name.version);
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "SIrrCreationParameters.h"
|
#include "SIrrCreationParameters.h"
|
||||||
#include <SDL2/SDL_video.h>
|
#include <SDL_video.h>
|
||||||
|
|
||||||
#ifdef _IRR_EMSCRIPTEN_PLATFORM_
|
#ifdef _IRR_EMSCRIPTEN_PLATFORM_
|
||||||
#ifdef _IRR_COMPILE_WITH_OGLES2_
|
#ifdef _IRR_COMPILE_WITH_OGLES2_
|
||||||
@ -846,7 +846,7 @@ bool CIrrDeviceSDL::activateJoysticks(core::array<SJoystickInfo> & joystickInfo)
|
|||||||
for(joystick = 0; joystick < (int)joystickInfo.size(); ++joystick)
|
for(joystick = 0; joystick < (int)joystickInfo.size(); ++joystick)
|
||||||
{
|
{
|
||||||
char logString[256];
|
char logString[256];
|
||||||
(void)sprintf(logString, "Found joystick %d, %d axes, %d buttons '%s'",
|
snprintf_irr(logString, sizeof(logString), "Found joystick %d, %d axes, %d buttons '%s'",
|
||||||
joystick, joystickInfo[joystick].Axes,
|
joystick, joystickInfo[joystick].Axes,
|
||||||
joystickInfo[joystick].Buttons, joystickInfo[joystick].Name.c_str());
|
joystickInfo[joystick].Buttons, joystickInfo[joystick].Name.c_str());
|
||||||
os::Printer::log(logString, ELL_INFORMATION);
|
os::Printer::log(logString, ELL_INFORMATION);
|
||||||
|
@ -20,8 +20,8 @@
|
|||||||
#include <emscripten/html5.h>
|
#include <emscripten/html5.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <SDL2/SDL.h>
|
#include <SDL.h>
|
||||||
#include <SDL2/SDL_syswm.h>
|
#include <SDL_syswm.h>
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
|
@ -22,20 +22,13 @@
|
|||||||
#include "IGUISpriteBank.h"
|
#include "IGUISpriteBank.h"
|
||||||
#include <winuser.h>
|
#include <winuser.h>
|
||||||
#include "SExposedVideoData.h"
|
#include "SExposedVideoData.h"
|
||||||
|
|
||||||
#if defined(_IRR_COMPILE_WITH_JOYSTICK_EVENTS_)
|
#if defined(_IRR_COMPILE_WITH_JOYSTICK_EVENTS_)
|
||||||
#include <mmsystem.h>
|
#include <mmsystem.h>
|
||||||
#include <regstr.h>
|
#include <regstr.h>
|
||||||
#ifdef _IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
|
#ifdef _IRR_COMPILE_WITH_DIRECTINPUT_JOYSTICK_
|
||||||
#define DIRECTINPUT_VERSION 0x0800
|
#define DIRECTINPUT_VERSION 0x0800
|
||||||
#include <dinput.h>
|
#include <dinput.h>
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma comment(lib, "dinput8.lib")
|
|
||||||
#pragma comment(lib, "dxguid.lib")
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma comment(lib, "winmm.lib")
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -514,7 +507,7 @@ bool SJoystickWin32Control::activateJoysticks(core::array<SJoystickInfo> & joyst
|
|||||||
for(joystick = 0; joystick < joystickInfo.size(); ++joystick)
|
for(joystick = 0; joystick < joystickInfo.size(); ++joystick)
|
||||||
{
|
{
|
||||||
char logString[256];
|
char logString[256];
|
||||||
(void)sprintf(logString, "Found joystick %d, %d axes, %d buttons '%s'",
|
snprintf_irr(logString, sizeof(logString), "Found joystick %d, %d axes, %d buttons '%s'",
|
||||||
joystick, joystickInfo[joystick].Axes,
|
joystick, joystickInfo[joystick].Axes,
|
||||||
joystickInfo[joystick].Buttons, joystickInfo[joystick].Name.c_str());
|
joystickInfo[joystick].Buttons, joystickInfo[joystick].Name.c_str());
|
||||||
os::Printer::log(logString, ELL_INFORMATION);
|
os::Printer::log(logString, ELL_INFORMATION);
|
||||||
@ -1096,12 +1089,12 @@ void CIrrDeviceWin32::resizeIfNecessary()
|
|||||||
|
|
||||||
if (r.right < 2 || r.bottom < 2)
|
if (r.right < 2 || r.bottom < 2)
|
||||||
{
|
{
|
||||||
sprintf(tmp, "Ignoring resize operation to (%ld %ld)", r.right, r.bottom);
|
snprintf_irr(tmp, sizeof(tmp), "Ignoring resize operation to (%ld %ld)", r.right, r.bottom);
|
||||||
os::Printer::log(tmp);
|
os::Printer::log(tmp);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
sprintf(tmp, "Resizing window (%ld %ld)", r.right, r.bottom);
|
snprintf_irr(tmp, sizeof(tmp), "Resizing window (%ld %ld)", r.right, r.bottom);
|
||||||
os::Printer::log(tmp);
|
os::Printer::log(tmp);
|
||||||
|
|
||||||
getVideoDriver()->OnResize(irr::core::dimension2du((u32)r.right, (u32)r.bottom));
|
getVideoDriver()->OnResize(irr::core::dimension2du((u32)r.right, (u32)r.bottom));
|
||||||
@ -1140,7 +1133,7 @@ bool CIrrDeviceWin32::present(video::IImage* image, void* windowId, core::rect<s
|
|||||||
{
|
{
|
||||||
HWND hwnd = HWnd;
|
HWND hwnd = HWnd;
|
||||||
if ( windowId )
|
if ( windowId )
|
||||||
hwnd = reinterpret_cast<HWND>(windowId);
|
hwnd = static_cast<HWND>(windowId);
|
||||||
|
|
||||||
HDC dc = GetDC(hwnd);
|
HDC dc = GetDC(hwnd);
|
||||||
|
|
||||||
|
@ -13,11 +13,9 @@
|
|||||||
#include "IImagePresenter.h"
|
#include "IImagePresenter.h"
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#if !defined(_IRR_XBOX_PLATFORM_)
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <mmsystem.h> // For JOYCAPS
|
#include <mmsystem.h> // For JOYCAPS
|
||||||
#include <windowsx.h>
|
#include <windowsx.h>
|
||||||
#endif
|
|
||||||
#if !defined(GET_X_LPARAM)
|
#if !defined(GET_X_LPARAM)
|
||||||
#define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
|
#define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
|
||||||
#define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
|
#define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
|
||||||
|
@ -1307,8 +1307,8 @@ bool CNullDriver::checkPrimitiveCount(u32 prmCount) const
|
|||||||
|
|
||||||
if (prmCount > m)
|
if (prmCount > m)
|
||||||
{
|
{
|
||||||
char tmp[1024];
|
char tmp[128];
|
||||||
sprintf(tmp,"Could not draw triangles, too many primitives(%u), maximum is %u.", prmCount, m);
|
snprintf_irr(tmp, sizeof(tmp), "Could not draw triangles, too many primitives(%u), maximum is %u.", prmCount, m);
|
||||||
os::Printer::log(tmp, ELL_ERROR);
|
os::Printer::log(tmp, ELL_ERROR);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -1689,9 +1689,9 @@ CNullDriver::SHWBufferLink *CNullDriver::getBufferLink(const scene::IMeshBuffer*
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
//search for hardware links
|
//search for hardware links
|
||||||
core::map< const scene::IMeshBuffer*,SHWBufferLink* >::Node* node = HWBufferMap.find(mb);
|
SHWBufferLink *HWBuffer = reinterpret_cast<SHWBufferLink*>(mb->getHWBuffer());
|
||||||
if (node)
|
if (HWBuffer)
|
||||||
return node->getValue();
|
return HWBuffer;
|
||||||
|
|
||||||
return createHardwareBuffer(mb); //no hardware links, and mesh wants one, create it
|
return createHardwareBuffer(mb); //no hardware links, and mesh wants one, create it
|
||||||
}
|
}
|
||||||
@ -1700,20 +1700,13 @@ CNullDriver::SHWBufferLink *CNullDriver::getBufferLink(const scene::IMeshBuffer*
|
|||||||
//! Update all hardware buffers, remove unused ones
|
//! Update all hardware buffers, remove unused ones
|
||||||
void CNullDriver::updateAllHardwareBuffers()
|
void CNullDriver::updateAllHardwareBuffers()
|
||||||
{
|
{
|
||||||
core::map<const scene::IMeshBuffer*,SHWBufferLink*>::ParentFirstIterator Iterator=HWBufferMap.getParentFirstIterator();
|
auto it = HWBufferList.begin();
|
||||||
|
while (it != HWBufferList.end()) {
|
||||||
|
SHWBufferLink *Link = *it;
|
||||||
|
++it;
|
||||||
|
|
||||||
for (;!Iterator.atEnd();Iterator++)
|
if (!Link->MeshBuffer || Link->MeshBuffer->getReferenceCount() == 1)
|
||||||
{
|
|
||||||
SHWBufferLink *Link=Iterator.getNode()->getValue();
|
|
||||||
|
|
||||||
Link->LastUsed++;
|
|
||||||
if (Link->LastUsed>20000)
|
|
||||||
{
|
|
||||||
deleteHardwareBuffer(Link);
|
deleteHardwareBuffer(Link);
|
||||||
|
|
||||||
// todo: needs better fix
|
|
||||||
Iterator = HWBufferMap.getParentFirstIterator();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1722,7 +1715,7 @@ void CNullDriver::deleteHardwareBuffer(SHWBufferLink *HWBuffer)
|
|||||||
{
|
{
|
||||||
if (!HWBuffer)
|
if (!HWBuffer)
|
||||||
return;
|
return;
|
||||||
HWBufferMap.remove(HWBuffer->MeshBuffer);
|
HWBufferList.erase(HWBuffer->listPosition);
|
||||||
delete HWBuffer;
|
delete HWBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1730,17 +1723,19 @@ void CNullDriver::deleteHardwareBuffer(SHWBufferLink *HWBuffer)
|
|||||||
//! Remove hardware buffer
|
//! Remove hardware buffer
|
||||||
void CNullDriver::removeHardwareBuffer(const scene::IMeshBuffer* mb)
|
void CNullDriver::removeHardwareBuffer(const scene::IMeshBuffer* mb)
|
||||||
{
|
{
|
||||||
core::map<const scene::IMeshBuffer*,SHWBufferLink*>::Node* node = HWBufferMap.find(mb);
|
if (!mb)
|
||||||
if (node)
|
return;
|
||||||
deleteHardwareBuffer(node->getValue());
|
SHWBufferLink *HWBuffer = reinterpret_cast<SHWBufferLink*>(mb->getHWBuffer());
|
||||||
|
if (HWBuffer)
|
||||||
|
deleteHardwareBuffer(HWBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//! Remove all hardware buffers
|
//! Remove all hardware buffers
|
||||||
void CNullDriver::removeAllHardwareBuffers()
|
void CNullDriver::removeAllHardwareBuffers()
|
||||||
{
|
{
|
||||||
while (HWBufferMap.size())
|
while (!HWBufferList.empty())
|
||||||
deleteHardwareBuffer(HWBufferMap.getRoot()->getValue());
|
deleteHardwareBuffer(HWBufferList.front());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,10 +21,7 @@
|
|||||||
#include "SVertexIndex.h"
|
#include "SVertexIndex.h"
|
||||||
#include "SLight.h"
|
#include "SLight.h"
|
||||||
#include "SExposedVideoData.h"
|
#include "SExposedVideoData.h"
|
||||||
|
#include <list>
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma warning( disable: 4996)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
@ -392,25 +389,29 @@ namespace video
|
|||||||
{
|
{
|
||||||
SHWBufferLink(const scene::IMeshBuffer *_MeshBuffer)
|
SHWBufferLink(const scene::IMeshBuffer *_MeshBuffer)
|
||||||
:MeshBuffer(_MeshBuffer),
|
:MeshBuffer(_MeshBuffer),
|
||||||
ChangedID_Vertex(0),ChangedID_Index(0),LastUsed(0),
|
ChangedID_Vertex(0),ChangedID_Index(0),
|
||||||
Mapped_Vertex(scene::EHM_NEVER),Mapped_Index(scene::EHM_NEVER)
|
Mapped_Vertex(scene::EHM_NEVER),Mapped_Index(scene::EHM_NEVER)
|
||||||
{
|
{
|
||||||
if (MeshBuffer)
|
if (MeshBuffer) {
|
||||||
MeshBuffer->grab();
|
MeshBuffer->grab();
|
||||||
|
MeshBuffer->setHWBuffer(reinterpret_cast<void*>(this));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ~SHWBufferLink()
|
virtual ~SHWBufferLink()
|
||||||
{
|
{
|
||||||
if (MeshBuffer)
|
if (MeshBuffer) {
|
||||||
|
MeshBuffer->setHWBuffer(NULL);
|
||||||
MeshBuffer->drop();
|
MeshBuffer->drop();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const scene::IMeshBuffer *MeshBuffer;
|
const scene::IMeshBuffer *MeshBuffer;
|
||||||
u32 ChangedID_Vertex;
|
u32 ChangedID_Vertex;
|
||||||
u32 ChangedID_Index;
|
u32 ChangedID_Index;
|
||||||
u32 LastUsed;
|
|
||||||
scene::E_HARDWARE_MAPPING Mapped_Vertex;
|
scene::E_HARDWARE_MAPPING Mapped_Vertex;
|
||||||
scene::E_HARDWARE_MAPPING Mapped_Index;
|
scene::E_HARDWARE_MAPPING Mapped_Index;
|
||||||
|
std::list<SHWBufferLink*>::iterator listPosition;
|
||||||
};
|
};
|
||||||
|
|
||||||
//! Gets hardware buffer link from a meshbuffer (may create or update buffer)
|
//! Gets hardware buffer link from a meshbuffer (may create or update buffer)
|
||||||
@ -822,8 +823,7 @@ namespace video
|
|||||||
core::array<SLight> Lights;
|
core::array<SLight> Lights;
|
||||||
core::array<SMaterialRenderer> MaterialRenderers;
|
core::array<SMaterialRenderer> MaterialRenderers;
|
||||||
|
|
||||||
//core::array<SHWBufferLink*> HWBufferLinks;
|
std::list<SHWBufferLink*> HWBufferList;
|
||||||
core::map< const scene::IMeshBuffer* , SHWBufferLink* > HWBufferMap;
|
|
||||||
|
|
||||||
io::IFileSystem* FileSystem;
|
io::IFileSystem* FileSystem;
|
||||||
|
|
||||||
|
@ -589,13 +589,12 @@ COGLES2Driver::~COGLES2Driver()
|
|||||||
SHWBufferLink_opengl *HWBuffer = new SHWBufferLink_opengl(mb);
|
SHWBufferLink_opengl *HWBuffer = new SHWBufferLink_opengl(mb);
|
||||||
|
|
||||||
//add to map
|
//add to map
|
||||||
HWBufferMap.insert(HWBuffer->MeshBuffer, HWBuffer);
|
HWBuffer->listPosition = HWBufferList.insert(HWBufferList.end(), HWBuffer);
|
||||||
|
|
||||||
HWBuffer->ChangedID_Vertex = HWBuffer->MeshBuffer->getChangedID_Vertex();
|
HWBuffer->ChangedID_Vertex = HWBuffer->MeshBuffer->getChangedID_Vertex();
|
||||||
HWBuffer->ChangedID_Index = HWBuffer->MeshBuffer->getChangedID_Index();
|
HWBuffer->ChangedID_Index = HWBuffer->MeshBuffer->getChangedID_Index();
|
||||||
HWBuffer->Mapped_Vertex = mb->getHardwareMappingHint_Vertex();
|
HWBuffer->Mapped_Vertex = mb->getHardwareMappingHint_Vertex();
|
||||||
HWBuffer->Mapped_Index = mb->getHardwareMappingHint_Index();
|
HWBuffer->Mapped_Index = mb->getHardwareMappingHint_Index();
|
||||||
HWBuffer->LastUsed = 0;
|
|
||||||
HWBuffer->vbo_verticesID = 0;
|
HWBuffer->vbo_verticesID = 0;
|
||||||
HWBuffer->vbo_indicesID = 0;
|
HWBuffer->vbo_indicesID = 0;
|
||||||
HWBuffer->vbo_verticesSize = 0;
|
HWBuffer->vbo_verticesSize = 0;
|
||||||
@ -642,8 +641,6 @@ COGLES2Driver::~COGLES2Driver()
|
|||||||
|
|
||||||
updateHardwareBuffer(HWBuffer); //check if update is needed
|
updateHardwareBuffer(HWBuffer); //check if update is needed
|
||||||
|
|
||||||
HWBuffer->LastUsed = 0;//reset count
|
|
||||||
|
|
||||||
const scene::IMeshBuffer* mb = HWBuffer->MeshBuffer;
|
const scene::IMeshBuffer* mb = HWBuffer->MeshBuffer;
|
||||||
const void *vertices = mb->getVertices();
|
const void *vertices = mb->getVertices();
|
||||||
const void *indexList = mb->getIndices();
|
const void *indexList = mb->getIndices();
|
||||||
|
@ -27,10 +27,6 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma comment(lib, "libGLESv2.lib")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
namespace video
|
namespace video
|
||||||
|
@ -456,13 +456,12 @@ COGLES1Driver::SHWBufferLink *COGLES1Driver::createHardwareBuffer(const scene::I
|
|||||||
SHWBufferLink_opengl *HWBuffer=new SHWBufferLink_opengl(mb);
|
SHWBufferLink_opengl *HWBuffer=new SHWBufferLink_opengl(mb);
|
||||||
|
|
||||||
//add to map
|
//add to map
|
||||||
HWBufferMap.insert(HWBuffer->MeshBuffer, HWBuffer);
|
HWBuffer->listPosition = HWBufferList.insert(HWBufferList.end(), HWBuffer);
|
||||||
|
|
||||||
HWBuffer->ChangedID_Vertex=HWBuffer->MeshBuffer->getChangedID_Vertex();
|
HWBuffer->ChangedID_Vertex=HWBuffer->MeshBuffer->getChangedID_Vertex();
|
||||||
HWBuffer->ChangedID_Index=HWBuffer->MeshBuffer->getChangedID_Index();
|
HWBuffer->ChangedID_Index=HWBuffer->MeshBuffer->getChangedID_Index();
|
||||||
HWBuffer->Mapped_Vertex=mb->getHardwareMappingHint_Vertex();
|
HWBuffer->Mapped_Vertex=mb->getHardwareMappingHint_Vertex();
|
||||||
HWBuffer->Mapped_Index=mb->getHardwareMappingHint_Index();
|
HWBuffer->Mapped_Index=mb->getHardwareMappingHint_Index();
|
||||||
HWBuffer->LastUsed=0;
|
|
||||||
HWBuffer->vbo_verticesID=0;
|
HWBuffer->vbo_verticesID=0;
|
||||||
HWBuffer->vbo_indicesID=0;
|
HWBuffer->vbo_indicesID=0;
|
||||||
HWBuffer->vbo_verticesSize=0;
|
HWBuffer->vbo_verticesSize=0;
|
||||||
@ -509,8 +508,6 @@ void COGLES1Driver::drawHardwareBuffer(SHWBufferLink *_HWBuffer)
|
|||||||
|
|
||||||
updateHardwareBuffer(HWBuffer); //check if update is needed
|
updateHardwareBuffer(HWBuffer); //check if update is needed
|
||||||
|
|
||||||
HWBuffer->LastUsed=0;//reset count
|
|
||||||
|
|
||||||
const scene::IMeshBuffer* mb = HWBuffer->MeshBuffer;
|
const scene::IMeshBuffer* mb = HWBuffer->MeshBuffer;
|
||||||
const void *vertices=mb->getVertices();
|
const void *vertices=mb->getVertices();
|
||||||
const void *indexList=mb->getIndices();
|
const void *indexList=mb->getIndices();
|
||||||
|
@ -26,10 +26,6 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma comment(lib, "libGLES_CM.lib")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
namespace video
|
namespace video
|
||||||
|
@ -5,9 +5,7 @@
|
|||||||
#include "COSOperator.h"
|
#include "COSOperator.h"
|
||||||
|
|
||||||
#ifdef _IRR_WINDOWS_API_
|
#ifdef _IRR_WINDOWS_API_
|
||||||
#ifndef _IRR_XBOX_PLATFORM_
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
@ -63,8 +61,7 @@ void COSOperator::copyToClipboard(const c8 *text) const
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
// Windows version
|
// Windows version
|
||||||
#if defined(_IRR_XBOX_PLATFORM_)
|
#if defined(_IRR_WINDOWS_API_)
|
||||||
#elif defined(_IRR_WINDOWS_API_)
|
|
||||||
if (!OpenClipboard(NULL) || text == 0)
|
if (!OpenClipboard(NULL) || text == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -101,8 +98,6 @@ void COSOperator::copyToClipboard(const c8 *text) const
|
|||||||
#elif defined(_IRR_COMPILE_WITH_X11_DEVICE_)
|
#elif defined(_IRR_COMPILE_WITH_X11_DEVICE_)
|
||||||
if ( IrrDeviceLinux )
|
if ( IrrDeviceLinux )
|
||||||
IrrDeviceLinux->copyToClipboard(text);
|
IrrDeviceLinux->copyToClipboard(text);
|
||||||
#else
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -111,9 +106,7 @@ void COSOperator::copyToClipboard(const c8 *text) const
|
|||||||
//! \return Returns 0 if no string is in there, otherwise an utf-8 string.
|
//! \return Returns 0 if no string is in there, otherwise an utf-8 string.
|
||||||
const c8* COSOperator::getTextFromClipboard() const
|
const c8* COSOperator::getTextFromClipboard() const
|
||||||
{
|
{
|
||||||
#if defined(_IRR_XBOX_PLATFORM_)
|
#if defined(_IRR_WINDOWS_API_)
|
||||||
return 0;
|
|
||||||
#elif defined(_IRR_WINDOWS_API_)
|
|
||||||
if (!OpenClipboard(NULL))
|
if (!OpenClipboard(NULL))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@ -156,7 +149,7 @@ const c8* COSOperator::getTextFromClipboard() const
|
|||||||
|
|
||||||
bool COSOperator::getSystemMemory(u32* Total, u32* Avail) const
|
bool COSOperator::getSystemMemory(u32* Total, u32* Avail) const
|
||||||
{
|
{
|
||||||
#if defined(_IRR_WINDOWS_API_) && !defined (_IRR_XBOX_PLATFORM_)
|
#if defined(_IRR_WINDOWS_API_)
|
||||||
|
|
||||||
MEMORYSTATUSEX MemoryStatusEx;
|
MEMORYSTATUSEX MemoryStatusEx;
|
||||||
MemoryStatusEx.dwLength = sizeof(MEMORYSTATUSEX);
|
MemoryStatusEx.dwLength = sizeof(MEMORYSTATUSEX);
|
||||||
@ -170,24 +163,19 @@ bool COSOperator::getSystemMemory(u32* Total, u32* Avail) const
|
|||||||
*Avail = (u32)(MemoryStatusEx.ullAvailPhys>>10);
|
*Avail = (u32)(MemoryStatusEx.ullAvailPhys>>10);
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
#elif defined(_IRR_POSIX_API_) && !defined(__FreeBSD__)
|
#elif defined(_IRR_POSIX_API_) && defined(_SC_PHYS_PAGES) && defined(_SC_AVPHYS_PAGES)
|
||||||
#if defined(_SC_PHYS_PAGES) && defined(_SC_AVPHYS_PAGES)
|
|
||||||
long ps = sysconf(_SC_PAGESIZE);
|
long ps = sysconf(_SC_PAGESIZE);
|
||||||
long pp = sysconf(_SC_PHYS_PAGES);
|
long pp = sysconf(_SC_PHYS_PAGES);
|
||||||
long ap = sysconf(_SC_AVPHYS_PAGES);
|
long ap = sysconf(_SC_AVPHYS_PAGES);
|
||||||
|
|
||||||
if ((ps==-1)||(pp==-1)||(ap==-1))
|
if (ps == -1 || (Total && pp == -1) || (Avail && ap == -1))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (Total)
|
if (Total)
|
||||||
*Total = (u32)((ps*(long long)pp)>>10);
|
*Total = (u32)((pp>>10)*ps);
|
||||||
if (Avail)
|
if (Avail)
|
||||||
*Avail = (u32)((ps*(long long)ap)>>10);
|
*Avail = (u32)((ap>>10)*ps);
|
||||||
return true;
|
return true;
|
||||||
#else
|
|
||||||
// TODO: implement for non-availability of symbols/features
|
|
||||||
return false;
|
|
||||||
#endif
|
|
||||||
#elif defined(_IRR_OSX_PLATFORM_)
|
#elif defined(_IRR_OSX_PLATFORM_)
|
||||||
int mib[2];
|
int mib[2];
|
||||||
int64_t physical_memory;
|
int64_t physical_memory;
|
||||||
@ -198,6 +186,11 @@ bool COSOperator::getSystemMemory(u32* Total, u32* Avail) const
|
|||||||
mib[1] = HW_MEMSIZE;
|
mib[1] = HW_MEMSIZE;
|
||||||
length = sizeof(int64_t);
|
length = sizeof(int64_t);
|
||||||
sysctl(mib, 2, &physical_memory, &length, NULL, 0);
|
sysctl(mib, 2, &physical_memory, &length, NULL, 0);
|
||||||
|
|
||||||
|
if (Total)
|
||||||
|
*Total = (u32)(physical_memory>>10);
|
||||||
|
if (Avail)
|
||||||
|
*Avail = (u32)(physical_memory>>10); // we don't know better
|
||||||
return true;
|
return true;
|
||||||
#else
|
#else
|
||||||
// TODO: implement for others
|
// TODO: implement for others
|
||||||
|
@ -20,11 +20,6 @@
|
|||||||
#include <GL/glext.h>
|
#include <GL/glext.h>
|
||||||
#endif
|
#endif
|
||||||
#include <GL/wglext.h>
|
#include <GL/wglext.h>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma comment(lib, "OpenGL32.lib")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#elif defined(_IRR_COMPILE_WITH_OSX_DEVICE_)
|
#elif defined(_IRR_COMPILE_WITH_OSX_DEVICE_)
|
||||||
#if defined(_IRR_OPENGL_USE_EXTPOINTER_)
|
#if defined(_IRR_OPENGL_USE_EXTPOINTER_)
|
||||||
#define GL_GLEXT_LEGACY 1
|
#define GL_GLEXT_LEGACY 1
|
||||||
@ -39,8 +34,8 @@
|
|||||||
#else
|
#else
|
||||||
#define GL_GLEXT_PROTOTYPES 1
|
#define GL_GLEXT_PROTOTYPES 1
|
||||||
#endif
|
#endif
|
||||||
#include <SDL2/SDL_video.h>
|
#include <SDL_video.h>
|
||||||
#include <SDL2/SDL_opengl.h>
|
#include <SDL_opengl.h>
|
||||||
#if defined(_IRR_OPENGL_USE_EXTPOINTER_)
|
#if defined(_IRR_OPENGL_USE_EXTPOINTER_)
|
||||||
// The SDL2 header doesn't cut it for extensions
|
// The SDL2 header doesn't cut it for extensions
|
||||||
#include <GL/glext.h>
|
#include <GL/glext.h>
|
||||||
|
@ -571,13 +571,12 @@ COpenGLDriver::SHWBufferLink *COpenGLDriver::createHardwareBuffer(const scene::I
|
|||||||
SHWBufferLink_opengl *HWBuffer=new SHWBufferLink_opengl(mb);
|
SHWBufferLink_opengl *HWBuffer=new SHWBufferLink_opengl(mb);
|
||||||
|
|
||||||
//add to map
|
//add to map
|
||||||
HWBufferMap.insert(HWBuffer->MeshBuffer, HWBuffer);
|
HWBuffer->listPosition = HWBufferList.insert(HWBufferList.end(), HWBuffer);
|
||||||
|
|
||||||
HWBuffer->ChangedID_Vertex=HWBuffer->MeshBuffer->getChangedID_Vertex();
|
HWBuffer->ChangedID_Vertex=HWBuffer->MeshBuffer->getChangedID_Vertex();
|
||||||
HWBuffer->ChangedID_Index=HWBuffer->MeshBuffer->getChangedID_Index();
|
HWBuffer->ChangedID_Index=HWBuffer->MeshBuffer->getChangedID_Index();
|
||||||
HWBuffer->Mapped_Vertex=mb->getHardwareMappingHint_Vertex();
|
HWBuffer->Mapped_Vertex=mb->getHardwareMappingHint_Vertex();
|
||||||
HWBuffer->Mapped_Index=mb->getHardwareMappingHint_Index();
|
HWBuffer->Mapped_Index=mb->getHardwareMappingHint_Index();
|
||||||
HWBuffer->LastUsed=0;
|
|
||||||
HWBuffer->vbo_verticesID=0;
|
HWBuffer->vbo_verticesID=0;
|
||||||
HWBuffer->vbo_indicesID=0;
|
HWBuffer->vbo_indicesID=0;
|
||||||
HWBuffer->vbo_verticesSize=0;
|
HWBuffer->vbo_verticesSize=0;
|
||||||
@ -626,7 +625,6 @@ void COpenGLDriver::drawHardwareBuffer(SHWBufferLink *_HWBuffer)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
updateHardwareBuffer(_HWBuffer); //check if update is needed
|
updateHardwareBuffer(_HWBuffer); //check if update is needed
|
||||||
_HWBuffer->LastUsed=0; //reset count
|
|
||||||
|
|
||||||
#if defined(GL_ARB_vertex_buffer_object)
|
#if defined(GL_ARB_vertex_buffer_object)
|
||||||
SHWBufferLink_opengl *HWBuffer=(SHWBufferLink_opengl*)_HWBuffer;
|
SHWBufferLink_opengl *HWBuffer=(SHWBufferLink_opengl*)_HWBuffer;
|
||||||
|
@ -243,6 +243,8 @@ void COpenGLSLMaterialRenderer::OnSetMaterial(const video::SMaterial& material,
|
|||||||
{
|
{
|
||||||
cacheHandler->setBlend(true);
|
cacheHandler->setBlend(true);
|
||||||
cacheHandler->setBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
cacheHandler->setBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
|
cacheHandler->setAlphaTest(true);
|
||||||
|
cacheHandler->setAlphaFunc(GL_GREATER, 0.f);
|
||||||
}
|
}
|
||||||
else if (FixedBlending)
|
else if (FixedBlending)
|
||||||
{
|
{
|
||||||
@ -291,7 +293,7 @@ void COpenGLSLMaterialRenderer::OnUnsetMaterial()
|
|||||||
{
|
{
|
||||||
cacheHandler->setBlend(false);
|
cacheHandler->setBlend(false);
|
||||||
}
|
}
|
||||||
else if (AlphaTest)
|
if (Alpha || AlphaTest)
|
||||||
{
|
{
|
||||||
cacheHandler->setAlphaTest(false);
|
cacheHandler->setAlphaTest(false);
|
||||||
}
|
}
|
||||||
|
@ -73,21 +73,12 @@ core::stringw CProfiler::getAsString(const SProfileData& data) const
|
|||||||
{
|
{
|
||||||
if ( data.getCallsCounter() > 0 )
|
if ( data.getCallsCounter() > 0 )
|
||||||
{
|
{
|
||||||
#ifdef _MSC_VER
|
wchar_t dummy[512];
|
||||||
#pragma warning(disable:4996) // 'sprintf' was declared deprecated
|
swprintf_irr(dummy, 512, L"%-15.15s%-12u%-12u%-12u%-12u",
|
||||||
#endif
|
data.getName().c_str(), data.getCallsCounter(), data.getTimeSum(),
|
||||||
// Can't use swprintf as it fails on some platforms (especially mobile platforms)
|
|
||||||
// Can't use Irrlicht functions because we have no string formatting.
|
|
||||||
char dummy[1023];
|
|
||||||
sprintf(dummy, "%-15.15s%-12u%-12u%-12u%-12u",
|
|
||||||
core::stringc(data.getName()).c_str(), data.getCallsCounter(), data.getTimeSum(),
|
|
||||||
data.getTimeSum() / data.getCallsCounter(), data.getLongestTime());
|
data.getTimeSum() / data.getCallsCounter(), data.getLongestTime());
|
||||||
dummy[1022] = 0;
|
|
||||||
|
|
||||||
return core::stringw(dummy);
|
return core::stringw(dummy);
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma warning(default :4996) // 'sprintf' was declared deprecated
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -11,10 +11,6 @@
|
|||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#include <GL/wglext.h>
|
#include <GL/wglext.h>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma comment(lib, "OpenGL32.lib")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
namespace video
|
namespace video
|
||||||
|
@ -448,7 +448,7 @@ IReadFile* CZipReader::createAndOpenFile(u32 index)
|
|||||||
//99 - AES encryption, WinZip 9
|
//99 - AES encryption, WinZip 9
|
||||||
|
|
||||||
const SZipFileEntry &e = FileInfo[Files[index].ID];
|
const SZipFileEntry &e = FileInfo[Files[index].ID];
|
||||||
wchar_t buf[64];
|
char buf[64];
|
||||||
s16 actualCompressionMethod=e.header.CompressionMethod;
|
s16 actualCompressionMethod=e.header.CompressionMethod;
|
||||||
IReadFile* decrypted=0;
|
IReadFile* decrypted=0;
|
||||||
u8* decryptedBuf=0;
|
u8* decryptedBuf=0;
|
||||||
@ -470,7 +470,7 @@ IReadFile* CZipReader::createAndOpenFile(u32 index)
|
|||||||
c8* pBuf = new c8[ uncompressedSize ];
|
c8* pBuf = new c8[ uncompressedSize ];
|
||||||
if (!pBuf)
|
if (!pBuf)
|
||||||
{
|
{
|
||||||
swprintf_irr ( buf, 64, L"Not enough memory for decompressing %s", core::stringw(Files[index].FullName).c_str() );
|
snprintf_irr ( buf, 64, "Not enough memory for decompressing %s", Files[index].FullName.c_str() );
|
||||||
os::Printer::log( buf, ELL_ERROR);
|
os::Printer::log( buf, ELL_ERROR);
|
||||||
if (decrypted)
|
if (decrypted)
|
||||||
decrypted->drop();
|
decrypted->drop();
|
||||||
@ -483,7 +483,7 @@ IReadFile* CZipReader::createAndOpenFile(u32 index)
|
|||||||
pcData = new u8[decryptedSize];
|
pcData = new u8[decryptedSize];
|
||||||
if (!pcData)
|
if (!pcData)
|
||||||
{
|
{
|
||||||
swprintf_irr ( buf, 64, L"Not enough memory for decompressing %s", core::stringw(Files[index].FullName).c_str() );
|
snprintf_irr ( buf, 64, "Not enough memory for decompressing %s", Files[index].FullName.c_str() );
|
||||||
os::Printer::log( buf, ELL_ERROR);
|
os::Printer::log( buf, ELL_ERROR);
|
||||||
delete [] pBuf;
|
delete [] pBuf;
|
||||||
return 0;
|
return 0;
|
||||||
@ -524,7 +524,7 @@ IReadFile* CZipReader::createAndOpenFile(u32 index)
|
|||||||
|
|
||||||
if (err != Z_OK)
|
if (err != Z_OK)
|
||||||
{
|
{
|
||||||
swprintf_irr ( buf, 64, L"Error decompressing %s", core::stringw(Files[index].FullName).c_str() );
|
snprintf_irr ( buf, 64, "Error decompressing %s", Files[index].FullName.c_str() );
|
||||||
os::Printer::log( buf, ELL_ERROR);
|
os::Printer::log( buf, ELL_ERROR);
|
||||||
delete [] pBuf;
|
delete [] pBuf;
|
||||||
return 0;
|
return 0;
|
||||||
@ -551,7 +551,7 @@ IReadFile* CZipReader::createAndOpenFile(u32 index)
|
|||||||
os::Printer::log("Decryption support not enabled. File cannot be read.", ELL_ERROR);
|
os::Printer::log("Decryption support not enabled. File cannot be read.", ELL_ERROR);
|
||||||
return 0;
|
return 0;
|
||||||
default:
|
default:
|
||||||
swprintf_irr ( buf, 64, L"file has unsupported compression method. %s", core::stringw(Files[index].FullName).c_str() );
|
snprintf_irr ( buf, 64, "file has unsupported compression method. %s", Files[index].FullName.c_str() );
|
||||||
os::Printer::log( buf, ELL_ERROR);
|
os::Printer::log( buf, ELL_ERROR);
|
||||||
return 0;
|
return 0;
|
||||||
};
|
};
|
||||||
|
@ -8,7 +8,7 @@ static const char* const copyright = "Irrlicht Engine (c) 2002-2017 Nikolaus Geb
|
|||||||
|
|
||||||
#ifdef _IRR_WINDOWS_
|
#ifdef _IRR_WINDOWS_
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#if defined(_DEBUG) && !defined(__GNUWIN32__) && !defined(_WIN32_WCE)
|
#if defined(_DEBUG) && !defined(__GNUWIN32__)
|
||||||
#include <crtdbg.h>
|
#include <crtdbg.h>
|
||||||
#endif // _DEBUG
|
#endif // _DEBUG
|
||||||
#endif
|
#endif
|
||||||
@ -148,7 +148,7 @@ BOOL APIENTRY DllMain( HANDLE hModule,
|
|||||||
switch (ul_reason_for_call)
|
switch (ul_reason_for_call)
|
||||||
{
|
{
|
||||||
case DLL_PROCESS_ATTACH:
|
case DLL_PROCESS_ATTACH:
|
||||||
#if defined(_DEBUG) && !defined(__GNUWIN32__) && !defined(__BORLANDC__) && !defined (_WIN32_WCE) && !defined (_IRR_XBOX_PLATFORM_)
|
#if defined(_DEBUG) && !defined(__GNUWIN32__)
|
||||||
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF | _CRTDBG_ALLOC_MEM_DF);
|
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF | _CRTDBG_ALLOC_MEM_DF);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
// Copyright (C) 2002-2012 Nikolaus Gebhardt / Thomas Alten
|
|
||||||
// This file is part of the "Irrlicht Engine".
|
|
||||||
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
||||||
|
|
||||||
#ifndef __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
|
|
||||||
#define __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
|
|
||||||
|
|
||||||
#include "IrrCompileConfig.h"
|
|
||||||
|
|
||||||
#ifndef REALINLINE
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#define REALINLINE __forceinline
|
|
||||||
#else
|
|
||||||
#define REALINLINE inline
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//! Size of a static C-style array.
|
|
||||||
#define array_size(_arr) ((sizeof(_arr)/sizeof(*_arr)))
|
|
||||||
|
|
||||||
//! Compiler Align
|
|
||||||
#if defined(_MSC_VER)
|
|
||||||
#define ALIGN(x) __declspec(align(x))
|
|
||||||
#elif defined(__GNUC__)
|
|
||||||
#define ALIGN(x) __attribute__ ((aligned(x)))
|
|
||||||
#else
|
|
||||||
#define ALIGN(x)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
|
|
@ -10,10 +10,17 @@
|
|||||||
#ifndef __S_VIDEO_2_SOFTWARE_HELPER_H_INCLUDED__
|
#ifndef __S_VIDEO_2_SOFTWARE_HELPER_H_INCLUDED__
|
||||||
#define __S_VIDEO_2_SOFTWARE_HELPER_H_INCLUDED__
|
#define __S_VIDEO_2_SOFTWARE_HELPER_H_INCLUDED__
|
||||||
|
|
||||||
#include "SoftwareDriver2_compile_config.h"
|
|
||||||
#include "irrMath.h"
|
#include "irrMath.h"
|
||||||
#include "SMaterial.h"
|
#include "SMaterial.h"
|
||||||
|
|
||||||
|
#ifndef REALINLINE
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define REALINLINE __forceinline
|
||||||
|
#else
|
||||||
|
#define REALINLINE inline
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
|
@ -8,18 +8,16 @@
|
|||||||
#include "irrMath.h"
|
#include "irrMath.h"
|
||||||
|
|
||||||
#if defined(_IRR_COMPILE_WITH_SDL_DEVICE_)
|
#if defined(_IRR_COMPILE_WITH_SDL_DEVICE_)
|
||||||
#include <SDL2/SDL_endian.h>
|
#include <SDL_endian.h>
|
||||||
#define bswap_16(X) SDL_Swap16(X)
|
#define bswap_16(X) SDL_Swap16(X)
|
||||||
#define bswap_32(X) SDL_Swap32(X)
|
#define bswap_32(X) SDL_Swap32(X)
|
||||||
#define bswap_64(X) SDL_Swap64(X)
|
#define bswap_64(X) SDL_Swap64(X)
|
||||||
#elif defined(_IRR_WINDOWS_API_) && defined(_MSC_VER) && (_MSC_VER > 1298)
|
#elif defined(_IRR_WINDOWS_API_) && defined(_MSC_VER)
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#define bswap_16(X) _byteswap_ushort(X)
|
#define bswap_16(X) _byteswap_ushort(X)
|
||||||
#define bswap_32(X) _byteswap_ulong(X)
|
#define bswap_32(X) _byteswap_ulong(X)
|
||||||
#define bswap_64(X) _byteswap_uint64(X)
|
#define bswap_64(X) _byteswap_uint64(X)
|
||||||
#if (_MSC_VER >= 1400)
|
|
||||||
#define localtime _localtime_s
|
#define localtime _localtime_s
|
||||||
#endif
|
|
||||||
#elif defined(_IRR_OSX_PLATFORM_) || defined(_IRR_IOS_PLATFORM_)
|
#elif defined(_IRR_OSX_PLATFORM_) || defined(_IRR_IOS_PLATFORM_)
|
||||||
#include <libkern/OSByteOrder.h>
|
#include <libkern/OSByteOrder.h>
|
||||||
#define bswap_16(X) OSReadSwapInt16(&X,0)
|
#define bswap_16(X) OSReadSwapInt16(&X,0)
|
||||||
@ -65,13 +63,9 @@ namespace os
|
|||||||
// Windows specific functions
|
// Windows specific functions
|
||||||
// ----------------------------------------------------------------
|
// ----------------------------------------------------------------
|
||||||
|
|
||||||
#ifdef _IRR_XBOX_PLATFORM_
|
|
||||||
#include <xtl.h>
|
|
||||||
#else
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace irr
|
namespace irr
|
||||||
{
|
{
|
||||||
@ -80,30 +74,17 @@ namespace os
|
|||||||
//! prints a debuginfo string
|
//! prints a debuginfo string
|
||||||
void Printer::print(const c8* message, ELOG_LEVEL ll)
|
void Printer::print(const c8* message, ELOG_LEVEL ll)
|
||||||
{
|
{
|
||||||
#if defined (_WIN32_WCE )
|
|
||||||
core::stringw tmp(message);
|
|
||||||
tmp += L"\n";
|
|
||||||
OutputDebugStringW(tmp.c_str());
|
|
||||||
#else
|
|
||||||
core::stringc tmp(message);
|
core::stringc tmp(message);
|
||||||
tmp += "\n";
|
tmp += "\n";
|
||||||
OutputDebugStringA(tmp.c_str());
|
OutputDebugStringA(tmp.c_str());
|
||||||
printf("%s", tmp.c_str());
|
printf("%s", tmp.c_str());
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static LARGE_INTEGER HighPerformanceFreq;
|
static LARGE_INTEGER HighPerformanceFreq;
|
||||||
static BOOL HighPerformanceTimerSupport = FALSE;
|
static BOOL HighPerformanceTimerSupport = FALSE;
|
||||||
static BOOL MultiCore = FALSE;
|
|
||||||
|
|
||||||
void Timer::initTimer(bool usePerformanceTimer)
|
void Timer::initTimer(bool usePerformanceTimer)
|
||||||
{
|
{
|
||||||
#if !defined(_WIN32_WCE) && !defined (_IRR_XBOX_PLATFORM_)
|
|
||||||
// workaround for hires timer on multiple core systems, bios bugs result in bad hires timers.
|
|
||||||
SYSTEM_INFO sysinfo;
|
|
||||||
GetSystemInfo(&sysinfo);
|
|
||||||
MultiCore = (sysinfo.dwNumberOfProcessors > 1);
|
|
||||||
#endif
|
|
||||||
if (usePerformanceTimer)
|
if (usePerformanceTimer)
|
||||||
HighPerformanceTimerSupport = QueryPerformanceFrequency(&HighPerformanceFreq);
|
HighPerformanceTimerSupport = QueryPerformanceFrequency(&HighPerformanceFreq);
|
||||||
else
|
else
|
||||||
@ -115,24 +96,11 @@ namespace os
|
|||||||
{
|
{
|
||||||
if (HighPerformanceTimerSupport)
|
if (HighPerformanceTimerSupport)
|
||||||
{
|
{
|
||||||
#if !defined(_WIN32_WCE) && !defined (_IRR_XBOX_PLATFORM_)
|
|
||||||
// Avoid potential timing inaccuracies across multiple cores by
|
|
||||||
// temporarily setting the affinity of this process to one core.
|
|
||||||
DWORD_PTR affinityMask=0;
|
|
||||||
if(MultiCore)
|
|
||||||
affinityMask = SetThreadAffinityMask(GetCurrentThread(), 1);
|
|
||||||
#endif
|
|
||||||
LARGE_INTEGER nTime;
|
LARGE_INTEGER nTime;
|
||||||
BOOL queriedOK = QueryPerformanceCounter(&nTime);
|
BOOL queriedOK = QueryPerformanceCounter(&nTime);
|
||||||
|
|
||||||
#if !defined(_WIN32_WCE) && !defined (_IRR_XBOX_PLATFORM_)
|
|
||||||
// Restore the true affinity.
|
|
||||||
if(MultiCore)
|
|
||||||
(void)SetThreadAffinityMask(GetCurrentThread(), affinityMask);
|
|
||||||
#endif
|
|
||||||
if(queriedOK)
|
if(queriedOK)
|
||||||
return u32((nTime.QuadPart) * 1000 / HighPerformanceFreq.QuadPart);
|
return u32((nTime.QuadPart) * 1000 / HighPerformanceFreq.QuadPart);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return GetTickCount();
|
return GetTickCount();
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,48 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
|
||||||
<CodeBlocks_project_file>
|
|
||||||
<FileVersion major="1" minor="6" />
|
|
||||||
<Project>
|
|
||||||
<Option title="FileToHeader" />
|
|
||||||
<Option pch_mode="0" />
|
|
||||||
<Option compiler="gcc" />
|
|
||||||
<Build>
|
|
||||||
<Target title="Linux">
|
|
||||||
<Option platforms="Unix;" />
|
|
||||||
<Option output="..\..\bin\Linux\FileToHeader" prefix_auto="0" extension_auto="0" />
|
|
||||||
<Option type="1" />
|
|
||||||
<Option compiler="gcc" />
|
|
||||||
<Compiler>
|
|
||||||
<Add option="-g" />
|
|
||||||
<Add option="-D_IRR_STATIC_LIB_" />
|
|
||||||
</Compiler>
|
|
||||||
<Linker>
|
|
||||||
<Add directory="..\..\lib\Linux" />
|
|
||||||
</Linker>
|
|
||||||
</Target>
|
|
||||||
<Target title="Windows">
|
|
||||||
<Option platforms="Windows;" />
|
|
||||||
<Option output="..\..\bin\Win32-gcc\FileToHeader" prefix_auto="0" extension_auto="1" />
|
|
||||||
<Option type="1" />
|
|
||||||
<Option compiler="gcc" />
|
|
||||||
<Compiler>
|
|
||||||
<Add option="-g" />
|
|
||||||
</Compiler>
|
|
||||||
<Linker>
|
|
||||||
<Add directory="..\..\lib\Win32-gcc" />
|
|
||||||
</Linker>
|
|
||||||
</Target>
|
|
||||||
</Build>
|
|
||||||
<VirtualTargets>
|
|
||||||
<Add alias="All" targets="Windows;Linux;" />
|
|
||||||
</VirtualTargets>
|
|
||||||
<Compiler>
|
|
||||||
<Add option="-g" />
|
|
||||||
</Compiler>
|
|
||||||
<Unit filename="main.cpp" />
|
|
||||||
<Extensions>
|
|
||||||
<code_completion />
|
|
||||||
<debugger />
|
|
||||||
<envvars />
|
|
||||||
</Extensions>
|
|
||||||
</Project>
|
|
||||||
</CodeBlocks_project_file>
|
|
@ -1,35 +0,0 @@
|
|||||||
# Makefile for FileToHeader
|
|
||||||
Target = FileToHeader
|
|
||||||
Sources = main.cpp
|
|
||||||
|
|
||||||
# general compiler settings
|
|
||||||
CPPFLAGS = -I../../include
|
|
||||||
CXXFLAGS = -O3 -ffast-math -Wall
|
|
||||||
#CXXFLAGS = -g -Wall
|
|
||||||
|
|
||||||
#default target is Linux
|
|
||||||
all: all_linux
|
|
||||||
|
|
||||||
ifeq ($(HOSTTYPE), x86_64)
|
|
||||||
LIBSELECT=64
|
|
||||||
endif
|
|
||||||
|
|
||||||
# target specific settings
|
|
||||||
all_linux clean_linux: SYSTEM=Linux
|
|
||||||
all_win32: LDFLAGS = -L../../lib/Win32-gcc
|
|
||||||
all_win32 clean_win32: SYSTEM=Win32-gcc
|
|
||||||
all_win32 clean_win32: SUF=.exe
|
|
||||||
# name of the binary - only valid for targets which set SYSTEM
|
|
||||||
DESTPATH = ../../bin/$(SYSTEM)/$(Target)$(SUF)
|
|
||||||
|
|
||||||
all_linux all_win32:
|
|
||||||
$(warning Building...)
|
|
||||||
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(Sources) -o $(DESTPATH) $(LDFLAGS)
|
|
||||||
|
|
||||||
clean: clean_linux clean_win32
|
|
||||||
$(warning Cleaning...)
|
|
||||||
|
|
||||||
clean_linux clean_win32:
|
|
||||||
@$(RM) $(DESTPATH)
|
|
||||||
|
|
||||||
.PHONY: all all_win32 clean clean_linux clean_win32
|
|
@ -1,175 +0,0 @@
|
|||||||
// Copyright (C) 2012 Gaz Davidson
|
|
||||||
// This file is part of the "Irrlicht Engine".
|
|
||||||
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
||||||
|
|
||||||
/***
|
|
||||||
This tool creates a .h file from a given input file by encoding it into a C string,
|
|
||||||
allowing you to build your resources directly into your binaries, just like Irrlicht's
|
|
||||||
built-in font.
|
|
||||||
|
|
||||||
To distribute your app as a single executable file of minimal size:
|
|
||||||
|
|
||||||
1. Put all your resources into a single directory and add it to Irrlicht's filesystem
|
|
||||||
as a folder through IFileSystem::addArchive. Develop and test your app as usual.
|
|
||||||
2. Open IrrCompileConfig.h and comment out all the options that your app does not use.
|
|
||||||
This will reduce the size of the Irrlicht library considerably.
|
|
||||||
* You should remove the D3D video drivers, because they rely on external DLLs.
|
|
||||||
* You should keep either the TAR or ZIP archive loader, used in step 6.
|
|
||||||
* If you remove the JPEG loader, you don't have to say you use JPEG code in your
|
|
||||||
documentation.
|
|
||||||
3. Recompile Irrlicht as a static library, editing the IRR_STATIC_LIB line in
|
|
||||||
IrrCompileConfig.h.
|
|
||||||
The next time you compile your application it will take a while longer, but
|
|
||||||
Irrlicht will be built into your binary.
|
|
||||||
4. TAR or ZIP your resource directory using your favourite archiving tool (ie 7zip).
|
|
||||||
* If you chose ZIP but compiled without zlib, don't compress this archive or it
|
|
||||||
won't open.
|
|
||||||
5. Run this tool to convert your resource file into a .h file, like so:
|
|
||||||
FileToHeader res.zip > EmbeddedResources.h
|
|
||||||
6. Add the .h file to your project, create the embedded read file then mount as a
|
|
||||||
ZIP or TAR archive instead of the folder, like so:
|
|
||||||
io::IReadFile *f = io::createEmbeddedFile(device->getFileSystem(), "res.zip");
|
|
||||||
device->getFileSystem()->addFileArchive(f);
|
|
||||||
archive->drop();
|
|
||||||
7. Recompile your app.
|
|
||||||
* If you use Microsoft's compiler, make sure your CRT (common run-time) is
|
|
||||||
the static library version, otherwise you'll have a dependency on the CRT DLLs.
|
|
||||||
Your binary should now be completely portable; you can distribute just the exe file.
|
|
||||||
8. Optional: Use UPX (upx.sf.net) to compress your binary.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
#include <fstream>
|
|
||||||
#include <sstream>
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
|
||||||
{
|
|
||||||
if (argc < 2)
|
|
||||||
{
|
|
||||||
// print usage
|
|
||||||
cerr << "You must to specify at least one input file" << endl;
|
|
||||||
cerr << "usage: " << argv[0] << "<file1> [file2...]" << endl;
|
|
||||||
cerr << "outputs a header file to stdout, so for example use";
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int i = 1;
|
|
||||||
|
|
||||||
// write file header
|
|
||||||
cout << "// File made by FileToHeader, part of the Irrlicht Engine" << endl
|
|
||||||
<< endl
|
|
||||||
<< "#ifndef _EMBEDDED_FILES_H_INCLUDED_" << endl
|
|
||||||
<< "#define _EMBEDDED_FILES_H_INCLUDED_" << endl
|
|
||||||
<< endl
|
|
||||||
<< "#include \"irrTypes.h\"" << endl
|
|
||||||
<< "#include \"IReadFile.h\"" << endl
|
|
||||||
<< "#include \"IFileSystem.h\"" << endl
|
|
||||||
<< endl
|
|
||||||
<< "namespace irr" << endl
|
|
||||||
<< "{" << endl
|
|
||||||
<< "namespace io" << endl
|
|
||||||
<< "{" << endl
|
|
||||||
<< endl
|
|
||||||
<< " const c8* EmbeddedFileData[] = " << endl
|
|
||||||
<< " {" << endl;
|
|
||||||
|
|
||||||
// store sizes and file names
|
|
||||||
stringstream sizes;
|
|
||||||
stringstream names;
|
|
||||||
sizes << "const u32 EmbeddedFileSizes[] = {";
|
|
||||||
names << "const c8* EmbeddedFileNames[] = {";
|
|
||||||
int fileCount = 0;
|
|
||||||
|
|
||||||
// char to hex digit table, probably doesn't help for speed due to fstream. better than using sprintf though
|
|
||||||
char hextable[16] = {'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
|
|
||||||
|
|
||||||
while (i < argc)
|
|
||||||
{
|
|
||||||
// open and seek to end of file
|
|
||||||
ifstream input;
|
|
||||||
input.open(argv[i], ios::in | ios::binary | ios::ate);
|
|
||||||
|
|
||||||
if (input.is_open())
|
|
||||||
{
|
|
||||||
int size = input.tellg();
|
|
||||||
input.seekg(0, ios::beg);
|
|
||||||
// read the file into RAM
|
|
||||||
char *entireFile = new char[size];
|
|
||||||
input.read(entireFile, size);
|
|
||||||
|
|
||||||
if (fileCount)
|
|
||||||
{
|
|
||||||
sizes << ", ";
|
|
||||||
names << ", ";
|
|
||||||
cout << "," << endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
// save file size and name
|
|
||||||
sizes << size;
|
|
||||||
names << '"' << argv[i] << '"';
|
|
||||||
|
|
||||||
// write the file data
|
|
||||||
cout << " \"";
|
|
||||||
for (int count=0; count < size; ++count)
|
|
||||||
{
|
|
||||||
if (count && (count % 16) == 0)
|
|
||||||
cout << "\"" << endl << " \"";
|
|
||||||
|
|
||||||
cout << "\\x" << hextable[(entireFile[count] >> 4) & 0xF] << hextable[entireFile[count] & 0x0F];
|
|
||||||
}
|
|
||||||
cout << "\"";
|
|
||||||
|
|
||||||
delete [] entireFile;
|
|
||||||
//
|
|
||||||
input.close();
|
|
||||||
|
|
||||||
fileCount++;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
cerr << "Failed to open file: " << argv[i] << endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
++i;
|
|
||||||
}
|
|
||||||
|
|
||||||
// close binary file list and write file metadata
|
|
||||||
cout << endl
|
|
||||||
<< " , 0};" << endl
|
|
||||||
<< endl
|
|
||||||
<< " const u32 EmbeddedFileCount = " << fileCount << ";" << endl
|
|
||||||
<< " " << sizes.str() << "};" << endl
|
|
||||||
<< " " << names.str() << "};" << endl
|
|
||||||
<< endl;
|
|
||||||
|
|
||||||
// write functions to create embedded IReadFiles
|
|
||||||
cout << " IReadFile* createEmbeddedFile(IFileSystem *fs, u32 index)" << endl
|
|
||||||
<< " {" << endl
|
|
||||||
<< " if (EmbeddedFileCount < index)" << endl
|
|
||||||
<< " return 0;" << endl
|
|
||||||
<< endl
|
|
||||||
<< " return fs->createMemoryReadFile((void*)EmbeddedFileData[index], " << endl
|
|
||||||
<< " EmbeddedFileSizes[index], EmbeddedFileNames[index]);" << endl
|
|
||||||
<< " }" << endl
|
|
||||||
<< endl
|
|
||||||
<< " IReadFile* createEmbeddedFile(IFileSystem *fs, path filename)" << endl
|
|
||||||
<< " {" << endl
|
|
||||||
<< " for (u32 i=0; i < EmbeddedFileCount; ++i)" << endl
|
|
||||||
<< " if (filename == EmbeddedFileNames[i])" << endl
|
|
||||||
<< " return createEmbeddedFile(fs, i);" << endl
|
|
||||||
<< endl
|
|
||||||
<< " return 0;" << endl
|
|
||||||
<< " }" << endl
|
|
||||||
<< endl;
|
|
||||||
|
|
||||||
// write footer
|
|
||||||
cout << "} // namespace io" << endl
|
|
||||||
<< "} // namespace irr" << endl
|
|
||||||
<< endl
|
|
||||||
<< "#endif // _EMBEDDED_FILES_H_INCLUDED_" << endl;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
@ -1,168 +0,0 @@
|
|||||||
/*
|
|
||||||
This base class is used by the Attribute editor for making your own attribute types.
|
|
||||||
|
|
||||||
The attribute editor will try and create an attribute called "AttribType_attribute",
|
|
||||||
and if it fails, it will create a "string_attribute".
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __C_GUI_ATTRIBUTE_H_INCLUDED__
|
|
||||||
#define __C_GUI_ATTRIBUTE_H_INCLUDED__
|
|
||||||
|
|
||||||
#include "IGUIElement.h"
|
|
||||||
#include "IGUIEnvironment.h"
|
|
||||||
#include "IGUIFont.h"
|
|
||||||
#include "IGUIStaticText.h"
|
|
||||||
#include "IAttributes.h"
|
|
||||||
|
|
||||||
namespace irr
|
|
||||||
{
|
|
||||||
|
|
||||||
namespace gui
|
|
||||||
{
|
|
||||||
|
|
||||||
const u32 ATTRIBEDIT_ATTRIB_CHANGED=MAKE_IRR_ID('A','T','T','R');
|
|
||||||
|
|
||||||
class CGUIAttribute : public IGUIElement
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
//! constructor
|
|
||||||
CGUIAttribute(IGUIEnvironment* environment, IGUIElement *parent, s32 myParentID) :
|
|
||||||
IGUIElement(EGUIET_ELEMENT, environment, parent, -1, core::rect<s32>(0, 0, 100, 100) ),
|
|
||||||
AttribName(0), Attribs(0), Index(0), MyParentID(myParentID)
|
|
||||||
{
|
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
setDebugName("CGUIAttribute");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
AttribName = environment->addStaticText(0,
|
|
||||||
core::rect<s32>(0, 0,
|
|
||||||
100, Environment->getSkin()->getFont()->getDimension(L"A").Height),
|
|
||||||
false, false, this, -1, false);
|
|
||||||
AttribName->grab();
|
|
||||||
AttribName->setSubElement(true);
|
|
||||||
AttribName->setAlignment(EGUIA_UPPERLEFT, EGUIA_LOWERRIGHT, EGUIA_UPPERLEFT, EGUIA_UPPERLEFT);
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual ~CGUIAttribute()
|
|
||||||
{
|
|
||||||
if (Attribs)
|
|
||||||
Attribs->drop();
|
|
||||||
if (AttribName)
|
|
||||||
AttribName->drop();
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual bool OnEvent(const SEvent &e)
|
|
||||||
{
|
|
||||||
if (IsEnabled)
|
|
||||||
{
|
|
||||||
switch (e.EventType)
|
|
||||||
{
|
|
||||||
case EET_GUI_EVENT:
|
|
||||||
switch (e.GUIEvent.EventType)
|
|
||||||
{
|
|
||||||
case EGET_ELEMENT_FOCUSED:
|
|
||||||
if (Parent && isMyChild(e.GUIEvent.Caller))
|
|
||||||
Parent->bringToFront(this);
|
|
||||||
break;
|
|
||||||
case EGET_ELEMENT_HOVERED:
|
|
||||||
case EGET_ELEMENT_LEFT:
|
|
||||||
return IGUIElement::OnEvent(e);
|
|
||||||
case EGET_ELEMENT_FOCUS_LOST:
|
|
||||||
updateAttrib();
|
|
||||||
return IGUIElement::OnEvent(e);
|
|
||||||
default:
|
|
||||||
return updateAttrib();
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case EET_KEY_INPUT_EVENT:
|
|
||||||
return true;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return IGUIElement::OnEvent(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
//! sets the attribute to use
|
|
||||||
virtual void setAttrib(io::IAttributes *attribs, u32 attribIndex)
|
|
||||||
{
|
|
||||||
if (Attribs)
|
|
||||||
Attribs->drop();
|
|
||||||
Attribs = attribs;
|
|
||||||
if (Attribs)
|
|
||||||
Attribs->grab();
|
|
||||||
Index = attribIndex;
|
|
||||||
|
|
||||||
core::stringw name(attribs->getAttributeName(attribIndex));
|
|
||||||
name += L" (";
|
|
||||||
name += attribs->getAttributeTypeString(attribIndex);
|
|
||||||
name += L")";
|
|
||||||
AttribName->setText(name.c_str());
|
|
||||||
|
|
||||||
core::rect<s32> r = Parent->getAbsolutePosition();
|
|
||||||
core::rect<s32> r2(0, 5,
|
|
||||||
r.getWidth(), Environment->getSkin()->getFont()->getDimension(L"A").Height + 10 );
|
|
||||||
|
|
||||||
AttribName->setRelativePosition(r2);
|
|
||||||
|
|
||||||
// get minimum height
|
|
||||||
s32 y=0;
|
|
||||||
core::list<IGUIElement*>::Iterator it = Children.begin();
|
|
||||||
for (; it != Children.end(); ++it)
|
|
||||||
{
|
|
||||||
if (y < (*it)->getRelativePosition().LowerRightCorner.Y)
|
|
||||||
y = (*it)->getRelativePosition().LowerRightCorner.Y;
|
|
||||||
}
|
|
||||||
setMinSize( core::dimension2du(0, y+5));
|
|
||||||
|
|
||||||
updateAttrib(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
//! sets the parent ID, for identifying where events came from
|
|
||||||
void setParentID(s32 parentID)
|
|
||||||
{
|
|
||||||
MyParentID = parentID;
|
|
||||||
}
|
|
||||||
|
|
||||||
//! save the attribute and possibly post the event to its parent
|
|
||||||
virtual bool updateAttrib(bool sendEvent=true)
|
|
||||||
{
|
|
||||||
if (Attribs && IsEnabled && sendEvent)
|
|
||||||
{
|
|
||||||
// build event and pass to parent
|
|
||||||
SEvent event;
|
|
||||||
event.EventType = (EEVENT_TYPE)ATTRIBEDIT_ATTRIB_CHANGED;
|
|
||||||
event.UserEvent.UserData1 = MyParentID;
|
|
||||||
event.UserEvent.UserData2 = Index;
|
|
||||||
return Parent->OnEvent(event);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options=0)
|
|
||||||
{
|
|
||||||
IGUIElement::serializeAttributes(out, options);
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options=0)
|
|
||||||
{
|
|
||||||
IGUIElement::deserializeAttributes(in, options);
|
|
||||||
if (AttribName)
|
|
||||||
AttribName->setText(Text.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
|
||||||
IGUIStaticText* AttribName;
|
|
||||||
io::IAttributes* Attribs;
|
|
||||||
u32 Index;
|
|
||||||
s32 MyParentID;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace gui
|
|
||||||
} // namespace irr
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,119 +0,0 @@
|
|||||||
|
|
||||||
#include "CGUIAttributeEditor.h"
|
|
||||||
#include "IGUIEnvironment.h"
|
|
||||||
#include "IFileSystem.h"
|
|
||||||
#include "IVideoDriver.h"
|
|
||||||
#include "IAttributes.h"
|
|
||||||
#include "IGUIFont.h"
|
|
||||||
#include "IGUIScrollBar.h"
|
|
||||||
#include "CGUIAttribute.h"
|
|
||||||
#include "CGUIStringAttribute.h"
|
|
||||||
|
|
||||||
namespace irr
|
|
||||||
{
|
|
||||||
namespace gui
|
|
||||||
{
|
|
||||||
|
|
||||||
using namespace core;
|
|
||||||
using namespace io;
|
|
||||||
|
|
||||||
CGUIAttributeEditor::CGUIAttributeEditor(IGUIEnvironment* environment, s32 id, IGUIElement *parent) :
|
|
||||||
CGUIPanel(environment, parent, id, rect<s32>(0, 0, 100, 100)),
|
|
||||||
Attribs(0), Panel(0)
|
|
||||||
{
|
|
||||||
#ifdef _DEBUG
|
|
||||||
setDebugName("CGUIAttributeEditor");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// create attributes
|
|
||||||
Attribs = environment->getFileSystem()->createEmptyAttributes(Environment->getVideoDriver());
|
|
||||||
|
|
||||||
calculateClientArea();
|
|
||||||
resizeInnerPane();
|
|
||||||
|
|
||||||
// refresh attrib list
|
|
||||||
refreshAttribs();
|
|
||||||
|
|
||||||
IGUIScrollBar* sb = getVScrollBar();
|
|
||||||
core::rect<s32> r = sb->getRelativePosition();
|
|
||||||
r.LowerRightCorner.Y -= 16;
|
|
||||||
sb->setRelativePosition(r);
|
|
||||||
}
|
|
||||||
|
|
||||||
CGUIAttributeEditor::~CGUIAttributeEditor()
|
|
||||||
{
|
|
||||||
for (u32 i=0; i<AttribList.size(); ++i)
|
|
||||||
{
|
|
||||||
AttribList[i]->remove();
|
|
||||||
AttribList[i]->drop();
|
|
||||||
}
|
|
||||||
AttribList.clear();
|
|
||||||
|
|
||||||
Attribs->drop();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
IAttributes* CGUIAttributeEditor::getAttribs()
|
|
||||||
{
|
|
||||||
return Attribs;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CGUIAttributeEditor::refreshAttribs()
|
|
||||||
{
|
|
||||||
// clear the attribute list
|
|
||||||
u32 i;
|
|
||||||
for (i=0; i<AttribList.size(); ++i)
|
|
||||||
{
|
|
||||||
AttribList[i]->remove();
|
|
||||||
AttribList[i]->drop();
|
|
||||||
}
|
|
||||||
AttribList.clear();
|
|
||||||
|
|
||||||
position2di top(10, 5);
|
|
||||||
rect<s32> r(top.X, top.Y,
|
|
||||||
getClientArea().getWidth() - 10,
|
|
||||||
5 + Environment->getSkin()->getFont()->getDimension(L"A").Height);
|
|
||||||
|
|
||||||
// add attribute elements
|
|
||||||
u32 c = Attribs->getAttributeCount();
|
|
||||||
for (i=0; i<c; ++i)
|
|
||||||
{
|
|
||||||
|
|
||||||
// try to create attribute
|
|
||||||
stringc str = Attribs->getAttributeTypeString(i);
|
|
||||||
str += "_attribute";
|
|
||||||
CGUIAttribute* n = (CGUIAttribute*)Environment->addGUIElement(str.c_str(), 0);
|
|
||||||
|
|
||||||
// if this doesn't exist, use a string editor
|
|
||||||
if (!n)
|
|
||||||
n = (CGUIAttribute*)Environment->addGUIElement("string_attribute", 0);
|
|
||||||
|
|
||||||
if (n)
|
|
||||||
{
|
|
||||||
AttribList.push_back(n);
|
|
||||||
n->setParentID(getID());
|
|
||||||
n->grab();
|
|
||||||
}
|
|
||||||
|
|
||||||
// We can't set "this" as parent above as we need functionality
|
|
||||||
// of the overloaded addChild which isn't called in the constructor.
|
|
||||||
// (that's a general Irrlicht messup with too fat constructors)
|
|
||||||
addChild(n);
|
|
||||||
|
|
||||||
AttribList[i]->setSubElement(true);
|
|
||||||
AttribList[i]->setRelativePosition(r);
|
|
||||||
AttribList[i]->setAlignment(EGUIA_UPPERLEFT, EGUIA_LOWERRIGHT, EGUIA_UPPERLEFT, EGUIA_UPPERLEFT);
|
|
||||||
AttribList[i]->setAttrib(Attribs, i);
|
|
||||||
r += position2di(0, AttribList[i]->getRelativePosition().getHeight() + 5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void CGUIAttributeEditor::updateAttribs()
|
|
||||||
{
|
|
||||||
for (u32 i=0; i<AttribList.size(); ++i)
|
|
||||||
AttribList[i]->updateAttrib(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace gui
|
|
||||||
} // namespace irr
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user