Esenthel
Administrator
|
RE: Esenthel 1.0 outdated?
@cmontiel: I've adjusted the codes and the messages should happen less frequently now (hopefully, as this didn't happen on my devices).
|
|
02-05-2014 10:20 PM |
|
cmontiel
Member
|
RE: Esenthel 1.0 outdated?
Thanks!!
Do you mind update EE 1.0 android sdk with this change?, It's my last request , I promise
I think if someone doesn't need location services would be better totally disable checks, something like "void disableLocationServices(C Bool &d);".
I don't like to force an user to accept ACCESS_FINE_LOCATION permission for a game.
|
|
02-06-2014 01:09 AM |
|
laugan
Member
|
RE: Esenthel 1.0 outdated?
(02-05-2014 09:50 PM)Esenthel Wrote: @laugan:
Please set Include Directories to something like that:
C:\Users\Greg\Desktop\4_Greg\include
and Include Headers to:
C:\Users\Greg\Desktop\4_Greg\my.h | C:\Users\Greg\Desktop\4_Greg\otlv4.h
Tested it and works fine.
But if custom header is in VS/include/ folder it won't work? It sometimes crashes with this header, i attached a screenshot with the error.
Will you include russian language to default EE 2.0 editor font to make compilation show text instead of "???" ?
|
|
02-06-2014 08:05 AM |
|
Esenthel
Administrator
|
RE: Esenthel 1.0 outdated?
@laugan: I was able to fix the out of memory issue.
Russian chars: I'll see.
|
|
02-07-2014 01:59 AM |
|
laugan
Member
|
RE: Esenthel 1.0 outdated?
(02-07-2014 01:59 AM)Esenthel Wrote: @laugan: I was able to fix the out of memory issue.
Russian chars: I'll see.
Wow, Greg, you rock! :-)
|
|
02-07-2014 06:18 AM |
|
laugan
Member
|
RE: Esenthel 1.0 outdated?
(02-07-2014 01:59 AM)Esenthel Wrote: Russian chars: I'll see.
February update seems very good, customzable font especially!
Memory leak fixed, i don't see it any more
But the "Output" with russian seems to be not working still :(
P.S. VS2010 Output:
1>------ Построение начато: проект: Application 2, Конфигурация: Debug Win32 ------
1> stdafx.cpp
1> Code 1.cpp
1> Auto.cpp
1> Создание кода...
1>
1>
1> Project 2010.vcxproj -> C:\EsenthelEngineSDK\Projects\_Build_\Application 2\Application 2.exe
========== Построение: успешно: 1, с ошибками: 0, без изменений: 0, пропущено: 0 ==========
(This post was last modified: 02-11-2014 11:57 AM by laugan.)
|
|
02-11-2014 11:54 AM |
|
Esenthel
Administrator
|
RE: Esenthel 1.0 outdated?
Hello,
I've tested this, and:
"Џ®бв஥ЁҐ" is the direct output from Visual Studio compiler, instead of "Построение".
I've tried converting it from UTF8 to UTF16 but it failed.
I've tried converting it from MultiByte sequence to UTF16 but got the same result.
Code:
#include <locale.h>
void InitPre()
{
setlocale(LC_ALL, "Russian");
setlocale(LC_CTYPE, "Russian");
setlocale(LC_COLLATE, "Russian");
Char8 src[]="Џ®бв஥ЁҐ";
Char dest[1024]; Zero(dest);
int l=mbstowcs(dest, src, Elms(src));
My guess is that just the VS compiler generates wrong output when using the /Out flag to dump output to a file.
My recommendation is that you install English version of VS.
|
|
02-11-2014 11:27 PM |
|
laugan
Member
|
RE: Esenthel 1.0 outdated?
I think that VS output is correct, you can see the screenshot:
Why VS shows correct output and EE 2.0 incorrect?
|
|
02-12-2014 06:32 AM |
|
Esenthel
Administrator
|
RE: Esenthel 1.0 outdated?
|
|
02-12-2014 07:11 AM |
|
Houge
Member
|
RE: Esenthel 1.0 outdated?
(02-12-2014 07:11 AM)Esenthel Wrote: Hi, I'm talking about the /Out switch:
http://msdn.microsoft.com/en-us/library/ahky453h.aspx
Let me check
UPD:
Codepage is CP866 / OEM866, like DOS one. it works well. Can you check it?
P.S. We work with Laugan together, both in russian VS
(This post was last modified: 02-12-2014 07:34 AM by Houge.)
|
|
02-12-2014 07:16 AM |
|
Esenthel
Administrator
|
RE: Esenthel 1.0 outdated?
Yes I did check the output file when in Russian Unicode.
Quote:Let me check
UPD:
Codepage is CP866 / OEM866, like DOS one. it works well
Did you actually run that devenv.exe with /Out flag on some project to save the output to a file?
Can you attach that file?
When I ran it, I got this: "Џ®бв஥ЁҐ" instead of "Построение".
|
|
02-12-2014 08:17 AM |
|
Houge
Member
|
RE: Esenthel 1.0 outdated?
(02-12-2014 08:17 AM)Esenthel Wrote: Yes I did check the output file when in Russian Unicode.
Quote:Let me check
UPD:
Codepage is CP866 / OEM866, like DOS one. it works well
Did you actually run that devenv.exe with /Out flag on some project to save the output to a file?
Can you attach that file?
When I ran it, I got this: "Џ®бв஥ЁҐ" instead of "Построение".
1.
2.
3.
4.
|
|
02-12-2014 08:32 AM |
|
Esenthel
Administrator
|
RE: Esenthel 1.0 outdated?
Oh ok, thanks a lot, now I see, I'll try to do something about it.
|
|
02-12-2014 08:59 PM |
|
Esenthel
Administrator
|
RE: Esenthel 1.0 outdated?
All done, will work ok in next release.
|
|
02-12-2014 09:28 PM |
|
Houge
Member
|
RE: Esenthel 1.0 outdated?
At last i can switch EE 1.0 to 2.0! Thanks!
|
|
02-13-2014 04:47 AM |
|