theme.cpp 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016
  1. /*************************************************************************/
  2. /* theme.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* http://www.godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  9. /* */
  10. /* Permission is hereby granted, free of charge, to any person obtaining */
  11. /* a copy of this software and associated documentation files (the */
  12. /* "Software"), to deal in the Software without restriction, including */
  13. /* without limitation the rights to use, copy, modify, merge, publish, */
  14. /* distribute, sublicense, and/or sell copies of the Software, and to */
  15. /* permit persons to whom the Software is furnished to do so, subject to */
  16. /* the following conditions: */
  17. /* */
  18. /* The above copyright notice and this permission notice shall be */
  19. /* included in all copies or substantial portions of the Software. */
  20. /* */
  21. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  22. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  23. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  24. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  25. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  26. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  27. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  28. /*************************************************************************/
  29. #include "theme.h"
  30. #include "print_string.h"
  31. #include "os/file_access.h"
  32. Ref<Theme> Theme::default_theme;
  33. bool Theme::_set(const StringName& p_name, const Variant& p_value) {
  34. String sname=p_name;
  35. if (sname.find("/")!=-1) {
  36. String type=sname.get_slice("/",1);
  37. String node_type=sname.get_slice("/",0);
  38. String name=sname.get_slice("/",2);
  39. if (type=="icons") {
  40. set_icon(name,node_type,p_value);
  41. } else if (type=="styles") {
  42. set_stylebox(name,node_type,p_value);
  43. } else if (type=="fonts") {
  44. set_font(name,node_type,p_value);
  45. } else if (type=="colors") {
  46. set_color(name,node_type,p_value);
  47. } else if (type=="constants") {
  48. set_constant(name,node_type,p_value);
  49. } else
  50. return false;
  51. return true;
  52. }
  53. return false;
  54. }
  55. bool Theme::_get(const StringName& p_name,Variant &r_ret) const {
  56. String sname=p_name;
  57. if (sname.find("/")!=-1) {
  58. String type=sname.get_slice("/",1);
  59. String node_type=sname.get_slice("/",0);
  60. String name=sname.get_slice("/",2);
  61. if (type=="icons") {
  62. r_ret= get_icon(name,node_type);
  63. } else if (type=="styles") {
  64. r_ret= get_stylebox(name,node_type);
  65. } else if (type=="fonts") {
  66. r_ret= get_font(name,node_type);
  67. } else if (type=="colors") {
  68. r_ret= get_color(name,node_type);
  69. } else if (type=="constants") {
  70. r_ret= get_constant(name,node_type);
  71. } else
  72. return false;
  73. return true;
  74. }
  75. return false;
  76. }
  77. void Theme::_get_property_list( List<PropertyInfo> *p_list) const {
  78. const StringName *key=NULL;
  79. while((key=icon_map.next(key))) {
  80. const StringName *key2=NULL;
  81. while((key2=icon_map[*key].next(key2))) {
  82. p_list->push_back( PropertyInfo( Variant::OBJECT, String()+*key+"/icons/"+*key2, PROPERTY_HINT_RESOURCE_TYPE, "Texture" ) );
  83. }
  84. }
  85. key=NULL;
  86. while((key=style_map.next(key))) {
  87. const StringName *key2=NULL;
  88. while((key2=style_map[*key].next(key2))) {
  89. p_list->push_back( PropertyInfo( Variant::OBJECT, String()+*key+"/styles/"+*key2, PROPERTY_HINT_RESOURCE_TYPE, "StyleBox" ) );
  90. }
  91. }
  92. key=NULL;
  93. while((key=font_map.next(key))) {
  94. const StringName *key2=NULL;
  95. while((key2=font_map[*key].next(key2))) {
  96. p_list->push_back( PropertyInfo( Variant::OBJECT, String()+*key+"/fonts/"+*key2, PROPERTY_HINT_RESOURCE_TYPE, "Font" ) );
  97. }
  98. }
  99. key=NULL;
  100. while((key=color_map.next(key))) {
  101. const StringName *key2=NULL;
  102. while((key2=color_map[*key].next(key2))) {
  103. p_list->push_back( PropertyInfo( Variant::COLOR, String()+*key+"/colors/"+*key2 ) );
  104. }
  105. }
  106. key=NULL;
  107. while((key=constant_map.next(key))) {
  108. const StringName *key2=NULL;
  109. while((key2=constant_map[*key].next(key2))) {
  110. p_list->push_back( PropertyInfo( Variant::INT, String()+*key+"/constants/"+*key2 ) );
  111. }
  112. }
  113. }
  114. Ref<Theme> Theme::get_default() {
  115. return default_theme;
  116. }
  117. void Theme::set_default_theme_font( const Ref<Font>& p_default_font ) {
  118. default_theme_font=p_default_font;
  119. }
  120. Ref<Font> Theme::get_default_theme_font() const {
  121. return default_theme_font;
  122. }
  123. void Theme::set_default(const Ref<Theme>& p_default) {
  124. default_theme=p_default;
  125. }
  126. Ref<Texture> Theme::default_icon;
  127. Ref<StyleBox> Theme::default_style;
  128. Ref<Font> Theme::default_font;
  129. void Theme::set_default_icon( const Ref<Texture>& p_icon ) {
  130. default_icon=p_icon;
  131. }
  132. void Theme::set_default_style( const Ref<StyleBox>& p_style) {
  133. default_style=p_style;
  134. }
  135. void Theme::set_default_font( const Ref<Font>& p_font ) {
  136. default_font=p_font;
  137. }
  138. void Theme::set_icon(const StringName& p_name,const StringName& p_type,const Ref<Texture>& p_icon) {
  139. ERR_FAIL_COND(p_icon.is_null());
  140. bool new_value=!icon_map.has(p_type) || !icon_map[p_type].has(p_name);
  141. icon_map[p_type][p_name]=p_icon;
  142. if (new_value) {
  143. _change_notify();
  144. emit_changed();;
  145. }
  146. }
  147. Ref<Texture> Theme::get_icon(const StringName& p_name,const StringName& p_type) const {
  148. if (icon_map.has(p_type) && icon_map[p_type].has(p_name) && icon_map[p_type][p_name].is_valid()) {
  149. return icon_map[p_type][p_name];
  150. } else {
  151. return default_icon;
  152. }
  153. }
  154. bool Theme::has_icon(const StringName& p_name,const StringName& p_type) const {
  155. return (icon_map.has(p_type) && icon_map[p_type].has(p_name));
  156. }
  157. void Theme::clear_icon(const StringName& p_name,const StringName& p_type) {
  158. ERR_FAIL_COND(!icon_map.has(p_type));
  159. ERR_FAIL_COND(!icon_map[p_type].has(p_name));
  160. icon_map[p_type].erase(p_name);
  161. _change_notify();
  162. emit_changed();;
  163. }
  164. void Theme::get_icon_list(StringName p_type, List<StringName> *p_list) const {
  165. if (!icon_map.has(p_type))
  166. return;
  167. const StringName *key=NULL;
  168. while((key=icon_map[p_type].next(key))) {
  169. p_list->push_back(*key);
  170. }
  171. }
  172. void Theme::set_stylebox(const StringName& p_name,const StringName& p_type,const Ref<StyleBox>& p_style) {
  173. ERR_FAIL_COND(p_style.is_null());
  174. bool new_value=!style_map.has(p_type) || !style_map[p_type].has(p_name);
  175. style_map[p_type][p_name]=p_style;
  176. if (new_value)
  177. _change_notify();
  178. emit_changed();;
  179. }
  180. Ref<StyleBox> Theme::get_stylebox(const StringName& p_name,const StringName& p_type) const {
  181. if (style_map.has(p_type) && style_map[p_type].has(p_name) && style_map[p_type][p_name].is_valid()) {
  182. return style_map[p_type][p_name];
  183. } else {
  184. return default_style;
  185. }
  186. }
  187. bool Theme::has_stylebox(const StringName& p_name,const StringName& p_type) const {
  188. return (style_map.has(p_type) && style_map[p_type].has(p_name) );
  189. }
  190. void Theme::clear_stylebox(const StringName& p_name,const StringName& p_type) {
  191. ERR_FAIL_COND(!style_map.has(p_type));
  192. ERR_FAIL_COND(!style_map[p_type].has(p_name));
  193. style_map[p_type].erase(p_name);
  194. _change_notify();
  195. emit_changed();;
  196. }
  197. void Theme::get_stylebox_list(StringName p_type, List<StringName> *p_list) const {
  198. if (!style_map.has(p_type))
  199. return;
  200. const StringName *key=NULL;
  201. while((key=style_map[p_type].next(key))) {
  202. p_list->push_back(*key);
  203. }
  204. }
  205. void Theme::set_font(const StringName& p_name,const StringName& p_type,const Ref<Font>& p_font) {
  206. ERR_FAIL_COND(p_font.is_null());
  207. bool new_value=!font_map.has(p_type) || !font_map[p_type].has(p_name);
  208. font_map[p_type][p_name]=p_font;
  209. if (new_value) {
  210. _change_notify();
  211. emit_changed();;
  212. }
  213. }
  214. Ref<Font> Theme::get_font(const StringName& p_name,const StringName& p_type) const {
  215. if (font_map.has(p_type) && font_map[p_type].has(p_name) && font_map[p_type][p_name].is_valid())
  216. return font_map[p_type][p_name];
  217. else if (default_theme_font.is_valid())
  218. return default_theme_font;
  219. else
  220. return default_font;
  221. }
  222. bool Theme::has_font(const StringName& p_name,const StringName& p_type) const {
  223. return (font_map.has(p_type) && font_map[p_type].has(p_name));
  224. }
  225. void Theme::clear_font(const StringName& p_name,const StringName& p_type) {
  226. ERR_FAIL_COND(!font_map.has(p_type));
  227. ERR_FAIL_COND(!font_map[p_type].has(p_name));
  228. font_map[p_type].erase(p_name);
  229. _change_notify();
  230. emit_changed();;
  231. }
  232. void Theme::get_font_list(StringName p_type, List<StringName> *p_list) const {
  233. if (!font_map.has(p_type))
  234. return;
  235. const StringName *key=NULL;
  236. while((key=font_map[p_type].next(key))) {
  237. p_list->push_back(*key);
  238. }
  239. }
  240. void Theme::set_color(const StringName& p_name,const StringName& p_type,const Color& p_color) {
  241. bool new_value=!color_map.has(p_type) || !color_map[p_type].has(p_name);
  242. color_map[p_type][p_name]=p_color;
  243. if (new_value) {
  244. _change_notify();
  245. emit_changed();;
  246. }
  247. }
  248. Color Theme::get_color(const StringName& p_name,const StringName& p_type) const {
  249. if (color_map.has(p_type) && color_map[p_type].has(p_name))
  250. return color_map[p_type][p_name];
  251. else
  252. return Color();
  253. }
  254. bool Theme::has_color(const StringName& p_name,const StringName& p_type) const {
  255. return (color_map.has(p_type) && color_map[p_type].has(p_name));
  256. }
  257. void Theme::clear_color(const StringName& p_name,const StringName& p_type) {
  258. ERR_FAIL_COND(!color_map.has(p_type));
  259. ERR_FAIL_COND(!color_map[p_type].has(p_name));
  260. color_map[p_type].erase(p_name);
  261. _change_notify();
  262. emit_changed();;
  263. }
  264. void Theme::get_color_list(StringName p_type, List<StringName> *p_list) const {
  265. if (!color_map.has(p_type))
  266. return;
  267. const StringName *key=NULL;
  268. while((key=color_map[p_type].next(key))) {
  269. p_list->push_back(*key);
  270. }
  271. }
  272. void Theme::set_constant(const StringName& p_name,const StringName& p_type,int p_constant) {
  273. bool new_value=!constant_map.has(p_type) || !constant_map[p_type].has(p_name);
  274. constant_map[p_type][p_name]=p_constant;
  275. if (new_value) {
  276. _change_notify();
  277. emit_changed();;
  278. }
  279. }
  280. int Theme::get_constant(const StringName& p_name,const StringName& p_type) const {
  281. if (constant_map.has(p_type) && constant_map[p_type].has(p_name))
  282. return constant_map[p_type][p_name];
  283. else {
  284. return 0;
  285. }
  286. }
  287. bool Theme::has_constant(const StringName& p_name,const StringName& p_type) const {
  288. return (constant_map.has(p_type) && constant_map[p_type].has(p_name));
  289. }
  290. void Theme::clear_constant(const StringName& p_name,const StringName& p_type) {
  291. ERR_FAIL_COND(!constant_map.has(p_type));
  292. ERR_FAIL_COND(!constant_map[p_type].has(p_name));
  293. constant_map[p_type].erase(p_name);
  294. _change_notify();
  295. emit_changed();;
  296. }
  297. void Theme::get_constant_list(StringName p_type, List<StringName> *p_list) const {
  298. if (!constant_map.has(p_type))
  299. return;
  300. const StringName *key=NULL;
  301. while((key=constant_map[p_type].next(key))) {
  302. p_list->push_back(*key);
  303. }
  304. }
  305. void Theme::copy_default_theme() {
  306. Ref<Theme> default_theme=get_default();
  307. icon_map=default_theme->icon_map;
  308. style_map=default_theme->style_map;
  309. font_map=default_theme->font_map;
  310. color_map=default_theme->color_map;
  311. constant_map=default_theme->constant_map;
  312. _change_notify();
  313. emit_changed();;
  314. }
  315. void Theme::get_type_list(List<StringName> *p_list) const {
  316. Set<StringName> types;
  317. const StringName *key=NULL;
  318. while((key=icon_map.next(key))) {
  319. types.insert(*key);
  320. }
  321. key=NULL;
  322. while((key=style_map.next(key))) {
  323. types.insert(*key);
  324. }
  325. key=NULL;
  326. while((key=font_map.next(key))) {
  327. types.insert(*key);
  328. }
  329. key=NULL;
  330. while((key=color_map.next(key))) {
  331. types.insert(*key);
  332. }
  333. key=NULL;
  334. while((key=constant_map.next(key))) {
  335. types.insert(*key);
  336. }
  337. for(Set<StringName>::Element *E=types.front();E;E=E->next()) {
  338. p_list->push_back(E->get());
  339. }
  340. }
  341. void Theme::_bind_methods() {
  342. ObjectTypeDB::bind_method(_MD("set_icon","name","type","texture:Texture"),&Theme::set_icon);
  343. ObjectTypeDB::bind_method(_MD("get_icon:Texture","name","type"),&Theme::get_icon);
  344. ObjectTypeDB::bind_method(_MD("has_icon","name","type"),&Theme::has_icon);
  345. ObjectTypeDB::bind_method(_MD("clear_icon","name","type"),&Theme::clear_icon);
  346. ObjectTypeDB::bind_method(_MD("get_icon_list"),&Theme::_get_icon_list);
  347. ObjectTypeDB::bind_method(_MD("set_stylebox","name","type","texture:StyleBox"),&Theme::set_stylebox);
  348. ObjectTypeDB::bind_method(_MD("get_stylebox:StyleBox","name","type"),&Theme::get_stylebox);
  349. ObjectTypeDB::bind_method(_MD("has_stylebox","name","type"),&Theme::has_stylebox);
  350. ObjectTypeDB::bind_method(_MD("clear_stylebox","name","type"),&Theme::clear_stylebox);
  351. ObjectTypeDB::bind_method(_MD("get_stylebox_list"),&Theme::_get_stylebox_list);
  352. ObjectTypeDB::bind_method(_MD("set_font","name","type","font:Font"),&Theme::set_font);
  353. ObjectTypeDB::bind_method(_MD("get_font:Font","name","type"),&Theme::get_font);
  354. ObjectTypeDB::bind_method(_MD("has_font","name","type"),&Theme::has_font);
  355. ObjectTypeDB::bind_method(_MD("clear_font","name","type"),&Theme::clear_font);
  356. ObjectTypeDB::bind_method(_MD("get_font_list"),&Theme::_get_font_list);
  357. ObjectTypeDB::bind_method(_MD("set_color","name","type","color"),&Theme::set_color);
  358. ObjectTypeDB::bind_method(_MD("get_color","name","type"),&Theme::get_color);
  359. ObjectTypeDB::bind_method(_MD("has_color","name","type"),&Theme::has_color);
  360. ObjectTypeDB::bind_method(_MD("clear_color","name","type"),&Theme::clear_color);
  361. ObjectTypeDB::bind_method(_MD("get_color_list"),&Theme::_get_color_list);
  362. ObjectTypeDB::bind_method(_MD("set_constant","name","type","constant"),&Theme::set_constant);
  363. ObjectTypeDB::bind_method(_MD("get_constant","name","type"),&Theme::get_constant);
  364. ObjectTypeDB::bind_method(_MD("has_constant","name","type"),&Theme::has_constant);
  365. ObjectTypeDB::bind_method(_MD("clear_constant","name","type"),&Theme::clear_constant);
  366. ObjectTypeDB::bind_method(_MD("get_constant_list"),&Theme::_get_constant_list);
  367. ObjectTypeDB::bind_method(_MD("set_default_font","font"),&Theme::set_default_theme_font);
  368. ObjectTypeDB::bind_method(_MD("get_default_font"),&Theme::get_default_theme_font);
  369. ObjectTypeDB::bind_method(_MD("get_type_list"),&Theme::_get_type_list);
  370. ObjectTypeDB::bind_method("copy_default_theme",&Theme::copy_default_theme);
  371. ADD_PROPERTY(PropertyInfo(Variant::OBJECT,"default_font",PROPERTY_HINT_RESOURCE_TYPE,"Font"),_SCS("set_default_font"),_SCS("get_default_font"));
  372. }
  373. Theme::Theme() {
  374. }
  375. Theme::~Theme()
  376. {
  377. }
  378. RES ResourceFormatLoaderTheme::load(const String &p_path,const String& p_original_path) {
  379. Error err;
  380. FileAccess *f = FileAccess::open(p_path,FileAccess::READ,&err);
  381. ERR_EXPLAIN("Unable to open theme file: "+p_path);
  382. ERR_FAIL_COND_V(err,RES());
  383. String base_path = p_path.get_base_dir();
  384. Ref<Theme> theme( memnew( Theme ) );
  385. Map<StringName,Variant> library;
  386. bool reading_library=false;
  387. int line=0;
  388. while(!f->eof_reached()) {
  389. String l = f->get_line().strip_edges();
  390. line++;
  391. int comment = l.find(";");
  392. if (comment!=-1)
  393. l=l.substr(0,comment);
  394. if (l=="")
  395. continue;
  396. if (l.begins_with("[")) {
  397. if (l=="[library]") {
  398. reading_library=true;
  399. } else if (l=="[theme]") {
  400. reading_library=false;
  401. } else {
  402. memdelete(f);
  403. ERR_EXPLAIN(p_path+":"+itos(line)+": Unknown section type: '"+l+"'.");
  404. ERR_FAIL_V(RES());
  405. }
  406. continue;
  407. }
  408. int eqpos = l.find("=");
  409. if (eqpos==-1) {
  410. memdelete(f);
  411. ERR_EXPLAIN(p_path+":"+itos(line)+": Expected '='.");
  412. ERR_FAIL_V(RES());
  413. }
  414. String right=l.substr(eqpos+1,l.length()).strip_edges();
  415. if (right=="") {
  416. memdelete(f);
  417. ERR_EXPLAIN(p_path+":"+itos(line)+": Expected value after '='.");
  418. ERR_FAIL_V(RES());
  419. }
  420. Variant value;
  421. if (right.is_valid_integer()) {
  422. //is number
  423. value = right.to_int();
  424. } else if (right.is_valid_html_color()) {
  425. //is html color
  426. value = Color::html(right);
  427. } else if (right.begins_with("@")) { //reference
  428. String reference = right.substr(1,right.length());
  429. if (!library.has(reference)) {
  430. memdelete(f);
  431. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid reference to '"+reference+"'.");
  432. ERR_FAIL_V(RES());
  433. }
  434. value=library[reference];
  435. } else if (right.begins_with("default")) { //use default
  436. //do none
  437. } else {
  438. //attempt to parse a constructor
  439. int popenpos = right.find("(");
  440. if (popenpos==-1) {
  441. memdelete(f);
  442. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid constructor syntax: "+right);
  443. ERR_FAIL_V(RES());
  444. }
  445. int pclosepos = right.find_last(")");
  446. if (pclosepos==-1) {
  447. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid constructor parameter syntax: "+right);
  448. ERR_FAIL_V(RES());
  449. }
  450. String type = right.substr(0,popenpos);
  451. String param = right.substr(popenpos+1,pclosepos-popenpos-1);
  452. if (type=="icon") {
  453. String path;
  454. if (param.is_abs_path())
  455. path=param;
  456. else
  457. path=base_path+"/"+param;
  458. Ref<Texture> texture = ResourceLoader::load(path);
  459. if (!texture.is_valid()) {
  460. memdelete(f);
  461. ERR_EXPLAIN(p_path+":"+itos(line)+": Couldn't find icon at path: "+path);
  462. ERR_FAIL_V(RES());
  463. }
  464. value=texture;
  465. } else if (type=="sbox") {
  466. String path;
  467. if (param.is_abs_path())
  468. path=param;
  469. else
  470. path=base_path+"/"+param;
  471. Ref<StyleBox> stylebox = ResourceLoader::load(path);
  472. if (!stylebox.is_valid()) {
  473. memdelete(f);
  474. ERR_EXPLAIN(p_path+":"+itos(line)+": Couldn't find stylebox at path: "+path);
  475. ERR_FAIL_V(RES());
  476. }
  477. value=stylebox;
  478. } else if (type=="sboxt") {
  479. Vector<String> params = param.split(",");
  480. if (params.size()!=5 && params.size()!=9) {
  481. memdelete(f);
  482. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid param count for sboxt(): '"+right+"'.");
  483. ERR_FAIL_V(RES());
  484. }
  485. String path=params[0];
  486. if (!param.is_abs_path())
  487. path=base_path+"/"+path;
  488. Ref<Texture> tex = ResourceLoader::load(path);
  489. if (tex.is_null()) {
  490. memdelete(f);
  491. ERR_EXPLAIN(p_path+":"+itos(line)+": Could not open texture for sboxt at path: '"+params[0]+"'.");
  492. ERR_FAIL_V(RES());
  493. }
  494. Ref<StyleBoxTexture> sbtex( memnew(StyleBoxTexture) );
  495. sbtex->set_texture(tex);
  496. for(int i=0;i<4;i++) {
  497. if (!params[i+1].is_valid_integer()) {
  498. memdelete(f);
  499. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid expand margin parameter for sboxt #"+itos(i+1) +", expected integer constant, got: '"+params[i+1]+"'.");
  500. ERR_FAIL_V(RES());
  501. }
  502. int margin = params[i+1].to_int();
  503. sbtex->set_expand_margin_size(Margin(i),margin);
  504. }
  505. if (params.size()==9) {
  506. for(int i=0;i<4;i++) {
  507. if (!params[i+5].is_valid_integer()) {
  508. memdelete(f);
  509. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid expand margin parameter for sboxt #"+itos(i+5) +", expected integer constant, got: '"+params[i+5]+"'.");
  510. ERR_FAIL_V(RES());
  511. }
  512. int margin = params[i+5].to_int();
  513. sbtex->set_margin_size(Margin(i),margin);
  514. }
  515. }
  516. value = sbtex;
  517. } else if (type=="sboxf") {
  518. Vector<String> params = param.split(",");
  519. if (params.size()<2) {
  520. memdelete(f);
  521. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid param count for sboxf(): '"+right+"'.");
  522. ERR_FAIL_V(RES());
  523. }
  524. Ref<StyleBoxFlat> sbflat( memnew(StyleBoxFlat) );
  525. if (!params[0].is_valid_integer()) {
  526. memdelete(f);
  527. ERR_EXPLAIN(p_path+":"+itos(line)+": Expected integer numeric constant for parameter 0 (border size).");
  528. ERR_FAIL_V(RES());
  529. }
  530. sbflat->set_border_size(params[0].to_int());
  531. if (!params[0].is_valid_integer()) {
  532. memdelete(f);
  533. ERR_EXPLAIN(p_path+":"+itos(line)+": Expected integer numeric constant for parameter 0 (border size).");
  534. ERR_FAIL_V(RES());
  535. }
  536. int left = MIN( params.size()-1, 3 );
  537. int ccodes=0;
  538. for(int i=0;i<left;i++) {
  539. if (params[i+1].is_valid_html_color())
  540. ccodes++;
  541. else
  542. break;
  543. }
  544. Color normal;
  545. Color bright;
  546. Color dark;
  547. if (ccodes<1) {
  548. memdelete(f);
  549. ERR_EXPLAIN(p_path+":"+itos(line)+": Expected at least 1, 2 or 3 html color codes.");
  550. ERR_FAIL_V(RES());
  551. } else if (ccodes==1) {
  552. normal=Color::html(params[1]);
  553. bright=Color::html(params[1]);
  554. dark=Color::html(params[1]);
  555. } else if (ccodes==2) {
  556. normal=Color::html(params[1]);
  557. bright=Color::html(params[2]);
  558. dark=Color::html(params[2]);
  559. } else {
  560. normal=Color::html(params[1]);
  561. bright=Color::html(params[2]);
  562. dark=Color::html(params[3]);
  563. }
  564. sbflat->set_dark_color(dark);
  565. sbflat->set_light_color(bright);
  566. sbflat->set_bg_color(normal);
  567. if (params.size()==ccodes+5) {
  568. //margins
  569. for(int i=0;i<4;i++) {
  570. if (!params[i+ccodes+1].is_valid_integer()) {
  571. memdelete(f);
  572. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid expand margin parameter for sboxf #"+itos(i+ccodes+1) +", expected integer constant, got: '"+params[i+ccodes+1]+"'.");
  573. ERR_FAIL_V(RES());
  574. }
  575. // int margin = params[i+ccodes+1].to_int();
  576. //sbflat->set_margin_size(Margin(i),margin);
  577. }
  578. } else if (params.size()!=ccodes+1) {
  579. memdelete(f);
  580. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid amount of margin parameters for sboxt.");
  581. ERR_FAIL_V(RES());
  582. }
  583. value=sbflat;
  584. } else {
  585. memdelete(f);
  586. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid constructor type: '"+type+"'.");
  587. ERR_FAIL_V(RES());
  588. }
  589. }
  590. //parse left and do something with it
  591. String left= l.substr(0,eqpos);
  592. if (reading_library) {
  593. left=left.strip_edges();
  594. if (!left.is_valid_identifier()) {
  595. memdelete(f);
  596. ERR_EXPLAIN(p_path+":"+itos(line)+": <LibraryItem> is not a valid identifier.");
  597. ERR_FAIL_V(RES());
  598. }
  599. if (library.has(left)) {
  600. memdelete(f);
  601. ERR_EXPLAIN(p_path+":"+itos(line)+": Already in library: '"+left+"'.");
  602. ERR_FAIL_V(RES());
  603. }
  604. library[left]=value;
  605. } else {
  606. int pointpos = left.find(".");
  607. if (pointpos==-1) {
  608. memdelete(f);
  609. ERR_EXPLAIN(p_path+":"+itos(line)+": Expected 'control.item=..' assign syntax.");
  610. ERR_FAIL_V(RES());
  611. }
  612. String control=left.substr(0,pointpos).strip_edges();
  613. if (!control.is_valid_identifier()) {
  614. memdelete(f);
  615. ERR_EXPLAIN(p_path+":"+itos(line)+": <Control> is not a valid identifier.");
  616. ERR_FAIL_V(RES());
  617. }
  618. String item=left.substr(pointpos+1,left.size()).strip_edges();
  619. if (!item.is_valid_identifier()) {
  620. memdelete(f);
  621. ERR_EXPLAIN(p_path+":"+itos(line)+": <Item> is not a valid identifier.");
  622. ERR_FAIL_V(RES());
  623. }
  624. if (value.get_type()==Variant::NIL) {
  625. //try to use exiting
  626. if (Theme::get_default()->has_stylebox(item,control))
  627. value=Theme::get_default()->get_stylebox(item,control);
  628. else if (Theme::get_default()->has_font(item,control))
  629. value=Theme::get_default()->get_font(item,control);
  630. else if (Theme::get_default()->has_icon(item,control))
  631. value=Theme::get_default()->get_icon(item,control);
  632. else if (Theme::get_default()->has_color(item,control))
  633. value=Theme::get_default()->get_color(item,control);
  634. else if (Theme::get_default()->has_constant(item,control))
  635. value=Theme::get_default()->get_constant(item,control);
  636. else {
  637. memdelete(f);
  638. ERR_EXPLAIN(p_path+":"+itos(line)+": Default not present for: '"+control+"."+item+"'.");
  639. ERR_FAIL_V(RES());
  640. }
  641. }
  642. if (value.get_type()==Variant::OBJECT) {
  643. Ref<Resource> res = value;
  644. if (!res.is_valid()) {
  645. memdelete(f);
  646. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid resource (NULL).");
  647. ERR_FAIL_V(RES());
  648. }
  649. if (res->cast_to<StyleBox>()) {
  650. theme->set_stylebox(item,control,res);
  651. } else if (res->cast_to<Font>()) {
  652. theme->set_font(item,control,res);
  653. } else if (res->cast_to<Font>()) {
  654. theme->set_font(item,control,res);
  655. } else if (res->cast_to<Texture>()) {
  656. theme->set_icon(item,control,res);
  657. } else {
  658. memdelete(f);
  659. ERR_EXPLAIN(p_path+":"+itos(line)+": Invalid resource type.");
  660. ERR_FAIL_V(RES());
  661. }
  662. } else if (value.get_type()==Variant::COLOR) {
  663. theme->set_color(item,control,value);
  664. } else if (value.get_type()==Variant::INT) {
  665. theme->set_constant(item,control,value);
  666. } else {
  667. memdelete(f);
  668. ERR_EXPLAIN(p_path+":"+itos(line)+": Couldn't even determine what this setting is! what did you do!?");
  669. ERR_FAIL_V(RES());
  670. }
  671. }
  672. }
  673. f->close();
  674. memdelete(f);
  675. return theme;
  676. }
  677. void ResourceFormatLoaderTheme::get_recognized_extensions(List<String> *p_extensions) const {
  678. p_extensions->push_back("theme");
  679. }
  680. bool ResourceFormatLoaderTheme::handles_type(const String& p_type) const {
  681. return p_type=="Theme";
  682. }
  683. String ResourceFormatLoaderTheme::get_resource_type(const String &p_path) const {
  684. if (p_path.extension().to_lower()=="theme")
  685. return "Theme";
  686. return "";
  687. }