Windows development: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
{{cleanup}}
{{cleanup}}
{{XBMC development nav}}
{{XBMC development nav}}
<section begin="intro" />[[Team-XBMC|Team-Kodi]] (formerly called [[Team-XBMC]]) first ported XBMC Media Center software to Windows in 2008, and the whole project cross-platform application was renamed to Kodi in 2014. Kodi itself is a huge open source project and it takes loads of people working together to maintain it for all platforms, that is why [[Team-XBMC|Team-Kodi]] is always on the lookout for C/C++ programmers to volunteer in assisting us with the development of Kodi. Whether you have contributed to the Kodi/XBMC project in the past or not, please consider doing so now.<section end="intro" />
<section begin="intro" />[[Team_Kodi|Team-Kodi]] (formerly called Team-XBMC first ported XBMC Media Center software to Windows in 2008, and the whole project cross-platform application was renamed to Kodi in 2014. Kodi itself is a huge open source project and it takes loads of people working together to maintain it for all platforms, that is why Team-Kodi is always on the lookout for C/C++ programmers to volunteer in assisting us with the development of Kodi. Whether you have contributed to the Kodi/XBMC project in the past or not, please consider doing so now.<section end="intro" />


Those of you who are completely unfamiliar with Kodi/XBMC can get a good overview of it on '''[[Kodi]]''' and '''[[Kodi FAQ]]'''.
Those of you who are completely unfamiliar with Kodi/XBMC can get a good overview of it on '''[[Kodi]]''' and '''[[Intro FAQ]]'''.


== End-users (non-programmers) ==
== End-users (non-programmers) ==
You can help too by downloading Kodi for Windows, testing it, and [[HOW-TO Submit a Proper Bug Report|reporting bugs and issues]]. Also, spread the word about Kodi for Windows (and other platforms) to your friends and family, we are sure they will enjoy it too.
You can help too by downloading Kodi for Windows, testing it, and [[HOW-TO:Submit_a_bug_report|reporting bugs and issues]]. Also, spread the word about Kodi for Windows (and other platforms) to your friends and family, we are sure they will enjoy it too.


== Developers (programmers) ==
== Developers (programmers) ==
Line 22: Line 22:


== Detailed technical information ==
== Detailed technical information ==
For more details please visit the [[Development Notes]] section of this manual.
For more details please visit the [[Development]] section of this manual.


== Source code ==
== Source code ==
Line 39: Line 39:
* Fast load and boot times for end-user perception (other thing can still run/start in the background without the user knowledge)
* Fast load and boot times for end-user perception (other thing can still run/start in the background without the user knowledge)


=== User-friendliness is next to godlyness ===
 
{{#lst:XBMC manifesto|User-friendliness}}


[[Category:Development]]
[[Category:Development]]
[[Category:Windows]]
[[Category:Windows]]
[[Category:Manual]]
[[Category:Manual]]

Revision as of 23:18, 7 July 2020

Home icon grey.png   ▶ Development ▶ Windows development


Cleanup.png This page or section may require cleanup, updating, spellchecking, reformatting and/or updated images. Please improve this page if you can. The discussion page may contain suggestions.


Template:XBMC development nav Team-Kodi (formerly called Team-XBMC first ported XBMC Media Center software to Windows in 2008, and the whole project cross-platform application was renamed to Kodi in 2014. Kodi itself is a huge open source project and it takes loads of people working together to maintain it for all platforms, that is why Team-Kodi is always on the lookout for C/C++ programmers to volunteer in assisting us with the development of Kodi. Whether you have contributed to the Kodi/XBMC project in the past or not, please consider doing so now.

Those of you who are completely unfamiliar with Kodi/XBMC can get a good overview of it on Kodi and Intro FAQ.

End-users (non-programmers)

You can help too by downloading Kodi for Windows, testing it, and reporting bugs and issues. Also, spread the word about Kodi for Windows (and other platforms) to your friends and family, we are sure they will enjoy it too.

Developers (programmers)

You should be proficient in C/C++ programming language, and although not really required knowledge of DirextX and Direct3D (as well as OpenGL) or other multimedia programming is a plus, as well as prior cross-platform or porting development experience.

The Win32 development platform Compiling Kodi. There are up-to-date README and Visual Studio .NET project files available in our git repo.

Hardware requirements

  • 32-bit Intel (x86-processor) based computer with Windows XP or Windows Vista, and a ATI Radeon 9200/X1600, Intel GMA950, or NVIDIA 6-Series 3D GPU (Graphics Processing Unit), or later with OpenGL or DirectX compatible video device drivers, (XBMC GUI requires at least OpenGL 1.3 or DirectX 9.0c support to run smoothly at an acceptable frame-rate in standard-definition, to run XBMC high-definition a more modern GPU is recommended).

Detailed technical information

For more details please visit the Development section of this manual.

Source code

The XBMC source code is in our git repository on github.com. Full instructions for compiling/builing XBMC under Windows is available here:

General guidelines

  • Code documentation (DocBook, rst, or doxygen for the code documentation steps, preferably the latter, doxygen)
  • Self-containment - XBMC should be as little dependent as possible on operating-system and third-party services/deamons/libraries
    • XBMC should for example contain all file-system and network-client (like samba) support built-into the XBMC package
  • Modular design - independent modules made up by localized/isolated code libraries without dependencies
    • XBMC should still compile and run if a non-essencial module/library is disabled or removed
  • Aim for the GUI/interface to run smoothly on a low spec computer (less than 1Ghz)
    • 3D graphic controller (GPU) will always be required hardware for XBMC so try to utilize the GPU as much as possible
  • Avoid harddisk trashing (excess read/write/erase cycles), so no harddrive paging, (utilize RAM memory intead).
  • Fast load and boot times for end-user perception (other thing can still run/start in the background without the user knowledge)