m.lev-yashin-1st-klub-union-dynamo-balon-1963-fc-s8.prestasi.web.id Layanan Informasi 17 Jam
Telp/Fax : 021-8762002, 8762003, 8762004, 87912360
HP/SMS : 081 1110 4824 27, 0812 9526 2009, 08523 1234 000
WhatsApp : 0817 0816 486, 0812 9526 2009
email : _Hubungi Kami__ silahkan klik
Chatting dengan Staf :
ggkarir.com
ggiklan.com
Pilih Bahasa :   ID   EN   Permintaan Katalog / Brosur (GRATIS via POS)   Ensiklopedia Lowongan Kerja Iklan

   
Cari  
    Informatika Komputer

    Sebelumnya  (id Software) (ID3)  Berikutnya    

id Tech 3

id Tech 3
The logo of the id Tech 3 engine
The id Tech 3 engine debuted with Quake III Arena Star Trek: Elite Force II was one of the last games to utilize the id Tech 3 engine
id Tech 3 in Quake III, the engine's parent game, and Elite Force II, one of the last games to use the engine
Developer(s)id Software
Written inC
TypeGame engine
LicenseGNU General Public License

id Tech 3 is a game engine developed by id Software for Quake III Arena and has been used in many games under the Quake III Arena engine and Quake III: Team Arena engine branding. During its time, it competed with the Unreal engine; both engines were widely licensed.

While id Tech 3 is based on id Tech 2; a large portion of the code was rewritten. Successor id Tech 4 was derived from id Tech 3.

At QuakeCon 2005, John Carmack announced that the Quake III Arena source code would be released under the GNU General Public License (version 2), and it was released on August 19, 2005. The code can be downloaded from id's FTP site.

Contents

Engine features

Graphics

Unlike most other game engines released at the time—including its primary competitor, Unreal Tournament, id Tech 3 requires an OpenGL-compliant graphics accelerator to run. The engine does not include a software renderer.

id Tech 3 introduced spline-based curved surfaces in addition to planar volumes, which are responsible for many of the surfaces present within the game.[1]

Shaders

The graphical technology of the game is based tightly around a "shader" system where the appearance of many surfaces can be defined in text files referred to as "shader scripts." Shaders are described and rendered as several layers, each layer contains a texture, a "blend mode" which determines how to superimpose it over the previous layer and texture orientation modes such as environment mapping, scrolling, and rotation. These features can readily be seen within the game with many bright and active surfaces in each map and even on character models. The shader system goes beyond visual appearance, defining the contents of volumes (e.g. a water volume is defined by applying a water shader to its surfaces), light emission and which sound to play when a volume is trodden upon.[2] In order to assist calculation of these shaders, id Tech 3 implements a specific fast inverse square root function, which attracted a significant amount of attention in the game development community for its clever use of integer operations.[3][4]

Video

In-game videos all use a proprietary format called "RoQ", which was originally created by Graeme Devine, the designer of Quake 3, for the game The 11th Hour. Internally RoQ uses vector quantization to encode video and DPCM to encode audio. While the format itself is proprietary it was successfully reverse-engineered in 2001,[5] and the actual RoQ decoder is present in the Quake 3 source code release. RoQ has seen little use outside games based on the id Tech 3 or id Tech 4 engines, but is supported by several video players (such as MPlayer) and a handful of third-party encoders exist.

Models

id Tech 3 loads 3D models in the MD3 format. The format uses vertex movements (sometimes called per-vertex animation) as opposed to skeletal animation in order to store animation. The animation features in the MD3 format are superior to those in id Tech 2's MD2 format because an animator is able to have a variable number of key frames per second instead of MD2's standard 10 key frames per second. This allows for more complex animations that are less "shaky" than the models found in Quake II.

Another important feature about the MD3 format is that models are broken up into three different parts which are anchored to each other. Typically, this is used to separate the head, torso and legs so that each part can animate independently for the sake of animation blending (i.e. a running animation on the legs, and shooting animation on the torso). Each part of the model has its own set of textures.

The character models are lit and shaded using Gouraud shading while the levels (stored in the BSP format) are lit either with lightmaps or Gouraud shading depending on the user's preference. The engine is able to take colored lights from the lightgrid and apply them to the models, resulting in a lighting quality that was, for its time, very advanced.

In the GPLed version of the source code, most of the code dealing with the MD4 skeletal animation files was missing.[citation needed] It is presumed that id simply never finished the format,[6] although almost all licensees derived their own skeletal animation systems from what was present. Ritual Entertainment did this for use in the game, Heavy Metal: F.A.K.K.², the SDK to which formed the basis of MD4 support completed by someone who used the pseudonym Gongo. [7]

Dynamic shadows

The engine is capable of three different kinds of shadows. One just places a circle with faded edges at the characters' feet, commonly known as the "blob shadow" technique. The other two modes project an accurate polygonal shadow across the floor. The difference between the latter two modes is one's reliance on opaque, solid black shadows while the other mode attempts (with mixed success) to project depth-pass stencil shadow volume shadows in a medium-transparent black. Neither of these techniques clip the shadow volumes, causing the shadows to extend down walls and through geometry.

Other rendering features

Other visual features include volumetric fog, mirrors, portals, decals, and wave-form vertex distortion.

Sound

id Tech 3's sound system outputs to two channels using a looping output buffer, mixed from 96 tracks with stereo spatialization and Doppler effect. All of the sound mixing is done within the engine, which can create problems for licensees hoping to implement EAX or surround sound support.[citation needed] Several popular effects such as echoes are also absent.

A major flaw of the sound system is that the mixer isn't given its own thread,[8] so if the game stalls for too long (particularly while navigating the menus or connecting to a server), the small output buffer will begin to loop, a very noticeable artifact. This problem was also present in the Doom 3, Quake, and Quake II engines.[citation needed]

Networking

id Tech 3 uses a "snapshot" system to relay information about game "frames" to the client over UDP. The server updates object interaction at a fixed rate independent of the rate clients update the server with their actions and then attempts to send the state of all objects at that moment (the current server frame) to each client. The server attempts to omit as much information as possible about each frame, relaying only differences from the last frame the client confirmed as received (Delta encoding). All data packets are compressed by Huffman coding with static pre-calculated frequency data to reduce bandwidth use even further.[9]

Quake 3 also integrated a relatively elaborate cheat-protection system called "pure server." Any client connecting to a pure server automatically has pure mode enabled, and while pure mode is enabled only files within data packs can be accessed. Clients are disconnected if their data packs fail one of several integrity checks. The cgame.qvm file, with its high potential for cheat-related modification, is subject to additional integrity checks.[citation needed] Developers must manually deactivate pure server to test maps or mods that are not in data packs using the .pk3 file format. Later versions supplemented pure server with PunkBuster support, though all the hooks to it are absent from the source code release because PunkBuster is closed source software and including support for it in the source code release would have caused any redistributors/reusers of the code to violate the GPL.[10]

Virtual machine

id Tech 3 uses a virtual machine to control object behavior on the server, effects and prediction on the client and the user interface. This presents many advantages as mod authors do not need to worry about crashing the entire game with bad code, clients could show more advanced effects and game menus than was possible in Quake II and the user interface for mods was entirely customizable.

Virtual machine files are developed in ANSI C, using LCC to compile them to a 32-bit RISC pseudo-assembly format. A tool called q3asm then converts them to QVM files, which are multi-segmented files consisting of static data and instructions based on a reduced set of the input opcodes. Unless operations which require a specific endianness are used, a QVM file will run the same on any platform supported by Quake 3.

The virtual machine also contained bytecode compilers for the x86 and PowerPC architectures, executing QVM instructions via an interpreter.

ioquake3

ioquake3 is a game engine project which aims to build upon id Software's Quake 3 source code release.[11][12] The project was started shortly after the source code release with the goal of creating a bug-free, enhanced open source Quake 3 source code distribution upon which new games and projects can be based. In addition, the project aims to provide an improved environment in which Quake III: Arena, the Team Arena expansion pack and all the popular mods can be played.[13][14][15][16] Notable features added by the project include builtin VoIP support, Anaglyph stereo rendering (for viewing with 3D glasses), and numerous security fixes. A full list of features is available on the project's website.

ioquake3 has been the basis of several game projects based on the id Tech 3 engine, such as OpenArena,[17][18] Tremulous,[19][20] Smokin' Guns,[21] Urban Terror[22][23] and World of Padman,[24][25] as well as game engine projects such as efport (a Star Trek: Voyager - Elite Force Holomatch engine recreation project) and OpenMoHAA. The engine and its associated games have been included in several Linux and BSD distributions.[26][27][28][29][30]

The ioquake3 project has also been used in the academic arena as the basis for a variety of research in institutions such as Stanford University's Center for Computer Research in Music and Acoustics (CCRMA),[31][32] Notre Dame as the foundation for VR research,[33] and Swinburne University of Technology's Centre for Advanced Internet Architectures.[34][35] There are even collaborative efforts from researchers at Carnegie Mellon University and the University of Toronto that use ioquake3 as a platform for their published researches.[36][37] Students have used ioquake3 as the basis for advanced graphics work for their theses, as well, such as Stephan Reiter's work [38][39] which has even been noted at the LLVM project[40] due to his synthesis of the ioquake3 engine, ray-tracing rendering technique, and LLVM.

Though the name ioquake3 is based on Ryan "Icculus" Gordon's site icculus.org, Ryan does not lead the project. Instead, he maintains a mentor role and provides hosting for the mailing lists and the SVN repository used by the project.[41]

The source code for Return to Castle Wolfenstein and Wolfenstein: Enemy Territory was released under the GNU General Public License on August 12, 2010.[42] The ioquake3 developers announced the start of respective engine projects soon after.[43]

Uses of the engine

Projects based on the GPL source release

  • ioquake3 – A project to remove bugs, clean up source code and to add more advanced graphical and audio features via SDL and OpenAL. ioquake3 is also intended to act as a clean base package, upon which other projects may be built. The game engine supports Ogg Vorbis format and video capture of demos in .avi format.[44] Games written using this engine include World of Padman, OpenArena (mimicking Quake III Arena), Tremulous and Turtle Arena.
  • Space Trader - An Action/Strategy game from HermitWorks Entertainment
  • Smokin' Guns - is intended to be a semi-realistic simulation of the "Old West's" atmosphere. Originally a Quake 3 modification, but became a stand-alone game. It has been ported back to ioquake3 engine in 2009.[45]
  • Urban Terror up to version 4.2 – A Quake 3 total conversion mod while designed and released to work with the retail software Quake 3, it is also compatible with opensource engine alternatives.
  • Tremulous - Tremulous is a first-person shooter with elements of real time strategy. Each team must construct and defend a base, consisting of structures which aid the players in some way. Like Smokin' Guns it started as a Mod, but as of 1.1 has become stand-alone.

Games using a proprietary license

See also

Portal iconFree software portal
Portal iconVideo games portal
  • Daftar/Tabel -- game engines
  • Fast inverse square root
  • First person shooter engine
  • id Tech
  • id Tech 1
  • id Tech 2
  • id Tech 4
  • id Tech 5

External links

References

  1. ^ Paul Jaquays, Brian Hook. "Quake III Arena Shader Manual". p. 5. Archived from the original on 2006-04-14. http://web.archive.org/web/20060414004110/http://www.qeradiant.com/manual/Q3AShader_Manual/ch05/pg5_1.htm. Retrieved 2006-10-01.
  2. ^ Paul Jaquays, Brian Hook. "Quake III Arena Shader Manual". p. 1. Archived from the original on 2006-09-04. http://web.archive.org/web/20060904124212/http://www.qeradiant.com/manual/Q3AShader_Manual/ch01/pg1_1.htm. Retrieved 2006-10-01.
  3. ^ Eberly, David (2002). Fast Inverse Square Root. Geometric Tools. p. 2 
  4. ^ Sommefeldt, Rys (November 29, 2006). "Origin of Quake3's Fast InvSqrt()". Beyond3D. http://www.beyond3d.com/content/articles/8/. Retrieved 2009-02-12.
  5. ^ Tim Ferguson (2001). "Id Software's .RoQ Video File Format". Archived from the original on 2006-09-01. http://web.archive.org/web/20060901203900/http://www.csse.monash.edu.au/~timf/videocodec/idroq.txt. Retrieved 2006-10-01.
  6. ^ ioquake3 md4-readme.txt
  7. ^ gongo. "md4 v4 file spec, by gongo". Archived from the original on 2011-07-15. http://web.archive.org/web/20110715134528/http://gongo.quakedev.com/md4.html. Retrieved 2012-08-11.
  8. ^ "Sound in the main thread". http://software.intel.com/en-us/articles/open-source-game-development/. Retrieved 2009-01-16.
  9. ^ "Book of Hook: The Quake3 Networking Model". http://trac.bookofhook.com/bookofhook/trac.cgi/wiki/Quake3Networking. Retrieved 2006-10-01.
  10. ^ "Ioquake3 Help Page". http://ioquake3.org/?page=help. Retrieved 2007-02-17.
  11. ^ "Complete Guide: Configure and Customise ioQuake3 in Linux - Linux Today". http://www.linuxtoday.com/news_story.php3?ltsn=2009-08-08-007-35-OS-GM. Retrieved 2010-01-03.
  12. ^ "Quake 3 ported to iPod Touch with tilt controls - Betanews". http://www.betanews.com/article/Quake-3-ported-to-iPod-Touch-with-tilt-controls/1208202321. Retrieved 2010-01-04.
  13. ^ "ioquake3 for OS X - Inside Mac Games". http://www.insidemacgames.com/news/story.php?ArticleID=14009. Retrieved 2010-01-03.
  14. ^ "ioquake3 for Mac OS X available for download - Macsimum News". http://www.macsimumnews.com/index.php/archive/ioquake3_for_mac_os_x_available_for_download. Retrieved 2010-01-03.
  15. ^ "IOQuake3 OSX : Clone de Quake III (gratuit) - MaxiApple.com". http://www.maxiapple.com/2009/05/ioquake3-osx-clone-de-quake-iii-gratuit.html. Retrieved 2010-01-03.
  16. ^ "IOQuake3 1.34 - Jogue Quake 3 no Mac OS X - Maclivre.net". http://www.maclivre.net/2009/03/18/ioquake3-134-jogue-quake-3-no-mac-os-x/. Retrieved 2010-01-04.
  17. ^ "Open Arena about page". http://openarena.ws/about.html. Retrieved 2009-11-03.
  18. ^ "XP Games". http://home.comcast.net/~SupportCD/XPGames.html. Retrieved 2009-11-03.
  19. ^ "Tremulous about page". http://tremulous.net/about/. Retrieved 2009-11-04.
  20. ^ "Quake, Meet GPL; GPL, Meet Quake - Linux Journal". http://www.linuxjournal.com/article/9867. Retrieved 2010-01-04.
  21. ^ "Entretien avec l'équipe de Smokin'Guns - JeuxLinux". http://www.jeuxlinux.fr/a269-Entretien_avec_lequipe_de_SmokinGuns.html. Retrieved 2009-11-04.
  22. ^ "Urban Terror manual". http://www.urbanterror.net/new_urt_manual/#Do_I_need_Quake_III_Arena_to_play.3F. Retrieved 2009-11-03.
  23. ^ "Two free games based on the Quake 3 engine tip up - The Inquirer". http://www.theinquirer.net/inquirer/news/1040566/two-free-games-quake-engine-tip. Retrieved 2010-01-04.
  24. ^ "A Look At Free Quake3 Engine Based Games - Slashdot". http://games.slashdot.org/article.pl?sid=07/04/06/1638232. Retrieved 2010-01-03.
  25. ^ "Perbandingan -- free software shooters - linuX-gamers.net". http://www.linux-gamers.net/modules/smartsection/item.php?itemid=81&keywords=ioquake3. Retrieved 2010-01-04.[dead link]
  26. ^ "Fedora 12 Update: quake3-1.36-5.fc12 - fedora-package-announce". http://www.mail-archive.com/fedora-package-announce@redhat.com/msg32752.html. Retrieved 2010-01-04.
  27. ^ "ioquake3-1.36-1mdv2010.0 RPM for i586 - RPM Find". http://rpmfind.net//linux/RPM/mandriva/2010.0/i586/media/contrib/release/ioquake3-1.36-1mdv2010.0.i586.html. Retrieved 2010-01-04.
  28. ^ "Package: openarena-data (0.8.1-2) - Debian". http://packages.debian.org/sid/openarena-data. Retrieved 2010-01-04.
  29. ^ "ioquake3 1.36 build 3 - FreshPorts". http://www.freshports.org/games/ioquake3/. Retrieved 2010-02-05.
  30. ^ "igames/ioquake3 - The NetBSD Packages Collection". http://ftp.netbsd.org/pub/NetBSD/packages/pkgsrc/games/ioquake3/README.html. Retrieved 2010-01-04.
  31. ^ "Q3osc research paper". https://ccrma.stanford.edu/~rob/papers/hamilton-ICMC2008-q3osc.pdf. Retrieved 2010-01-09.
  32. ^ "Q3osc wiki". https://ccrma.stanford.edu/wiki/Q3osc. Retrieved 2010-01-09.
  33. ^ "A Survey of Collaborative Virtual Environment Technologies". http://www.cse.nd.edu/Reports/2008/TR-2008-11.pdf. Retrieved 2010-01-09.
  34. ^ "L3DGEWorld 2.1 Input & Output Specifications". http://caia.swin.edu.au/reports/070808A/CAIA-TR-070808A.pdf. Retrieved 2010-01-09.
  35. ^ "L3DGEWorld 2.3". http://caia.swin.edu.au/urp/l3dge/tools/l3dgeworld/index.html. Retrieved 2010-01-09.
  36. ^ "VMM-Independent Graphics Acceleration". http://www.vmware.com/files/pdf/vee.pdf. Retrieved 2010-01-09.
  37. ^ "VMM article in ACM ISBN 978-1-59593-630-1 Pages: 33 - 43". http://portal.acm.org/citation.cfm?id=1254816. Retrieved 2010-01-09.
  38. ^ "Real-time Ray Tracing of Dynamic Scenes". http://llvm.org/pubs/2008-06-Reiter-Thesis.html. Retrieved 2012-04-22.
  39. ^ "Run-Time Code Generation for Materials". http://llvm.org/pubs/2008-08-RTCodegen.html. Retrieved 2012-04-22.
  40. ^ "LLVM Users, Open Source Projects". http://llvm.org/Users.html. Retrieved 2010-01-09.
  41. ^ "ioquake3 Miscellany - LinuxGames". http://www.linuxgames.com/archives/10379. Retrieved 2010-01-04.
  42. ^ ftp://ftp.idsoftware.com/idstuff/source/
  43. ^ Larabel, Michael (2010-06-13). "id Software Open-Sources ET, RTCW". Phoronix. http://www.phoronix.com/scan.php?page=news_item&px=ODUwNA. Retrieved 2010-08-13.
  44. ^ Valich, Theo (3 April 2007). "Two free games based on the Quake 3 engine tip up". The Inquirer. http://www.theinquirer.net/inquirer/news/1040566/two-free-games-quake-engine-tip. Retrieved 2010-01-12.
  45. ^ Bougard, Guillaume (alias Tequila) (22 January 2009). "Smokin'Guns ioQuake3 backport". Smokin'Guns Productions. http://forum.smokin-guns.org/viewtopic.php?t=1518. Retrieved 2010-01-26.
    Sebelumnya  (id Software) (ID3)  Berikutnya    


D3 KeperawatanPTNOrganisasi InternasionalKode POSHosting IndonesiaReferensi ICTJaringan WebsitePendidikanLingkunganLinuxPerangkat Lunak (Software)Dialog Agama KhonghucuSemua Dialog Forum



Tags: id Tech 3, Informatika Komputer, 2272, id Tech 3 id Tech 3 id Tech 3 in Quake III the engine's parent game and Elite Force II one of the last games to use the engine Developer(s) id Software Written in C Type Game engine License GNU General Public License id Tech 3 is a game engine developed by id Software for Quake III Arena and has been used in many games under the Quake III Arena engine and Quake III: Team Arena engine branding, Du, id Tech 3, Bahasa Indonesia, Contoh Instruksi, Tutorial, Referensi, Buku, Petunjuk m.lev yashin 1st klub union dynamo balon 1963 fc s8, prestasi.web.id
 Download Brosur / Katalog    Permintaan Keringanan Biaya Pendidikan    Referensi Bebas    Cari Karir    Buku Manual    Seluruh Perdebatan    Tips & Trik Tes Psikologi    Kelas Reguler    Program Kuliah Extension    Kuliah Tanpa Biaya    Kuliah Blended di 112 PTS Terbaik    Daftar Online

 Waktu Sholat    Alqur'an Online    Tips & Trik Tes Psikologi    Bermacam2 Info
Link Khusus ke
PTS Terakreditasi & Terkemuka
Penyelenggara Program S1, D3, S2

(silakan klik di bawah ini)
STMIKMJ - STMIKMJ Jakarta
IGI - STIE IGI Jakarta
STTM Cileungsi - STIE Cileungsi
STIE WP - STIE Widya Persada
UPRI - UPRI Makassar
STEI - STEI Yogyakarta
STIE - Hidayatullah Depok
STEBI - Bina Essa
P2KKMPoliteknik Aisyiyah

P2KKMUMPTB Lampung
P2KKMSTIT Al-Hikmah Lampung

P2KKMUniv.Amir Hamzah
P2KKMUSM Indonesia
P2KKMUniv. Al-Azhar Medan
P2KKMUniversitas Deli Sumatera

P2KKMUniv. Muh. Palangkaraya

P2KKMSTIT Nur Ahadiyah

P2KKMUniv. Nahd. Ulama Kalbar

P2KKMUniv. Nahd. Ulama Kaltim

Langsa -- Aceh :
P2KKMUSCND Langsa

P2KKMUniv. Ubudiyah Indonesia

P2KKMSTIT Hidayatullah
P2KKMIAI Abdullah Said

P2KKMUniv. Pejuang Rep. Ind.
P2KKMUniv. Teknologi Sulawesi
P2KKMUniv. Cokroaminoto Makassar
P2KKMITeKes Tri Tunas Nasional

P2KKMUniv. Patria Artha

P2KKMUniv. Nusantara, Manado
P2KKMSTIE Pioneer Manado
P2KKMUniversitas Parna Raya Manado

P2KKMUniversitas Boyolali

P2KKMUniversitas Duta Bangsa
P2KKMPoliteknik Harapan Bangsa Surakarta
P2KKMPoliteknik Santo Paulus Surakarta

P2KKMUNIBABWI

P2KKMUniv. Muhammadiyah Smrg
P2KKMUNDARIS Semarang
P2KKMUNAKI Semarang
P2KKMUPGRIS Semarang
P2KKMUniv. IVET Semarang
P2KKMSTIE Cendekia

P2KKMUNUGHA Cilacap

P2KKMUniv. Muhammadiyah Sby
P2KKMSTIE Pemuda Sby
P2KKMIKIP Widya Darma Sby
P2KKMSTIE Widya Darma Sby
P2KKMSTIE ABI Surabaya
P2KKMUNUSA Surabaya
P2KKMUniv. Widya Kartika
P2KKMSTAI Al Akbar Surabaya

P2KKMUniv. Kahuripan Kediri

P2KKMSTAI Muhammadiyah Tulungagung

P2KKMSTIKI Malang
P2KKMSTIE INDOCAKTI
P2KKMSTIE Al Rifa'ie

P2KKMSTIA Bayuangga
P2KKMSTAI Muhammadiyah Probolinggo

P2KKMUniversitas Moch. Sroedji

P2KKMSTEI JOGJA - STEI Yogyakarta
P2KKMSTIE Mitra Indonesia
P2KKMSTiPsi
P2KKMSTAI Terpadu Yogyakarta
P2KKMUniversitas Mahakarya Asia

P2KKMSTIE Hidayatullah
P2KKMSTIE - GICI A
P2KKMSTIE - GICI A


P2KKMSTMIK-MJ - STMIK Muh. Jkt.
P2KKMUNKRIS - Krisnadwipayana
P2KKMSTT Bina Tunggal - Bekasi
P2KKMSTT Duta Bangsa - Bekasi
P2KKMSTIE - GICI C
P2KKMSTEBI Global Mulia
P2KKMUniversitas Pelita Bangsa
P2KKMUniversitas Indonesia Mandiri
P2KKMPoliteknik Bhakti Kartini

P2KKMSTMIK-STIKOM Bali
P2KKMPOLNAS Denpasar
P2KKMUniversitas Bali Dwipa
P2KKMPoltek Ganesha Guru Singaraja

P2KKMSTIE Ganesha
P2KKMSTT Yuppentek
P2KKMITB Ahmad Dahlan
P2KKMUniv. Tangerang Raya
P2KKMSTIA Maulana Yusuf
P2KKMSTIH Gunung Jati
P2KKMSTIE PPI Balaraja

P2KKMUNSUB - Universitas Subang

P2KKMSTIT Al-Hidayah Tasikmalaya

P2KKMSTIE Walisongo
P2KKMSTT Walisongo

P2KKMUniv. Islam Al-Ihya

P2KKMSTT Mandala, Bandung
P2KKMSTT Bandung
P2KKMSTIE Gema Widya Bangsa
P2KKMUniversitas Insan Cendekia Mandiri
P2KKMUniversitas Halim Sanusi
P2KKMUniversitas Persatuan Islam
P2KKMSTEBI Bina Essa

P2KKMSTT Dr. Khez Muttaqien

P2KKMIMWI Sukabumi

P2KKMSTIH Dharma Andigha
P2KKMUniversitas Teknologi Nusnatara

P2KKMSTT Muhammadiyah Cileungsi

P2KKMISTA - Institut ST Al Kamal
P2KKMSTIE IGI - Inter. Golden Inst.
P2KKM Univ. Mpu Tantular B

P2KKMU M J - Univ. Muh. Jkt

P2KKMFISIP UMJ - Univ. Muh. Jkt.
P2KKMFTan UMJ - Agroteknologi
P2KKMSTIE Trianandra Jakarta
P2KKMSTIE - GICI B
P2KKMSTIE Ganesha
P2KKMSTIMAIMMI Jakarta
P2KKMTanri Abeng University

P2KKMUMHT - Univ. MH. Thamrin
P2KKMFE UMHT - FE MH. Thamrin
P2KKMFASILKOM UMHT
P2KKMUNKRIS - Krisnadwipayana
P2KKMITBU - Inst. Tek. Budi Utomo
P2KKMSTIE Trianandra Jakarta
P2KKMSTMIK Muh. Jkt - Matraman
P2KKMSTMIK Muh. Jkt - Ciracas
P2KKMUniv. Mpu Tantular A
P2KKMSTT Sapta Taruna
P2KKMIAI Al-Ghurabaa Jakarta

P2KKMISIF - Institut Studi Islam Fahmina

P2KKMSTEBI Global Mulia

P2KKMSTIKes Sapta Bakti
P2KKMSTAI Miftahul ulum

P2KKMPoltekkes Kerta Cendekia

P2KKMPelita Raya Institute


KPT Konsultan Pendidikan Tinggi

Tujuan Penting
silakan klik di bawah ini
Ilmu Pengetahuan Bebas

1. Universitas Yarsi Pratama - Universitas Yarsi Pratama - Kampus : Jl. Aria Jaya Santika No. 7, Pasir Nangka, Kec. Tigaraksa, Kab. Tangerang, Banten
2. STIE Widya Persada Jakarta - Sekolah Tinggi Ilmu Ekonomi Widya Persada Jakarta - Kampus :Jl. Hj. Tutty Alawiyah No.486, RW.5, Kalibata, Kec. Pancoran, Kota Jakarta Selatan, Daerah Khusus Ibukota Jakarta 12740
3. UWIKA Surabaya - Universitas Widya Kartika Surabaya - Kampus UWIKA : Jl. Sutorejo Prima Utara II No.1, Kalisari, Kec. Mulyorejo, Kota Surabaya, Jawa Timur 60112
4. Universitas Wijaya Kusuma Surabaya - Universitas Wijaya Kusuma Surabaya - Kampus : Jl. Dukuh Kupang XXV No.54, Dukuh Kupang, Kec. Dukuhpakis, Surabaya, Jawa Timur 60225
5. Universitas Teknologi Sulawesi Makassar - Universitas Teknologi Sulawesi Makassar - Kampus UTS Makassar : Jl. Talasalapang No.51A, Karunrung, Kec. Rappocini, Kota Makassar, Sulawesi Selatan 90222
6. Universitas Teknologi Nusantara - Universitas Teknologi Nusantara - Kampus UTN : Jl. Kedung Halang Pemda pangkalan II No.66, RT.01/RW.02, Kedunghalang, Kec. Bogor Utara, Kota Bogor, Jawa Barat 16158
ftui.web.id  |  kebangkitan-pendidikan-indonesia.co.id  |  roniabd.web.id  |  pelatihank3.web.id  |  trainingk3.web.id  |  infopts.com  |  jurnal-matematika.org  |  mathematics-journal.org  |  s2-uwks.web.id