Fulqrum Publishing Home   |   Register   |   Today Posts   |   Members   |   UserCP   |   Calendar   |   Search   |   FAQ

Go Back   Official Fulqrum Publishing forum > Fulqrum Publishing > IL-2 Sturmovik: Cliffs of Dover

IL-2 Sturmovik: Cliffs of Dover Latest instalment in the acclaimed IL-2 Sturmovik series from award-winning developer Maddox Games.

Reply
 
Thread Tools Display Modes
  #1  
Old 10-14-2011, 07:04 PM
Trooper117's Avatar
Trooper117 Trooper117 is offline
Approved Member
 
Join Date: Feb 2010
Posts: 309
Default

C'mon Pogi.. does a couple of days here and there make a big difference?
All the while you are sitting here fretting you could be playing the game, or another game, or doing real life stuff!
Reply With Quote
  #2  
Old 10-14-2011, 07:13 PM
V.4_Pogi V.4_Pogi is offline
Approved Member
 
Join Date: May 2010
Location: Hungary
Posts: 28
Default

Quote:
Originally Posted by Trooper117 View Post
C'mon Pogi.. does a couple of days here and there make a big difference?
All the while you are sitting here fretting you could be playing the game, or another game, or doing real life stuff!

You know it on a whole week I do a real thing,I work hard! I would like to know what there is with this only f..king patch,if I paid a lot of money for him already.
Reply With Quote
  #3  
Old 10-14-2011, 07:40 PM
Gamekeeper Gamekeeper is offline
Approved Member
 
Join Date: Oct 2007
Posts: 190
Default

The posts on Sukhoi are not official announcements, these are made by Luthier and he posts on both forums. Also as Russian is the first language for most of the developers it is only natural they post on a Russian forum.

Not everything is a conspiracy
Reply With Quote
  #4  
Old 10-16-2011, 12:28 AM
Madfish Madfish is offline
Approved Member
 
Join Date: Aug 2010
Posts: 423
Default

Quote:
Originally Posted by Gamekeeper View Post
The posts on Sukhoi are not official announcements, these are made by Luthier and he posts on both forums. Also as Russian is the first language for most of the developers it is only natural they post on a Russian forum.

Not everything is a conspiracy
Maybe. But to programmers English IS a native language. I never understood how you could begin trying to code without even understanding and more importantly express content in English.
Reply With Quote
  #5  
Old 10-16-2011, 01:21 AM
Icebear Icebear is offline
Approved Member
 
Join Date: Aug 2011
Location: Antarctica
Posts: 156
Default

Quote:
Originally Posted by Madfish View Post
I never understood how you could begin trying to code without even understanding and more importantly express content in English.
ROFL ! Take a look at IL2 CLiffs of Dover. Nice try....
Reply With Quote
  #6  
Old 10-16-2011, 02:14 AM
hiro hiro is offline
Approved Member
 
Join Date: Jul 2009
Posts: 352
Default

Patch info is needed by sukhoi.ru because true
developers why must they write because coder blue
In Mother Russia, the forum posts you.
That is why they post and patch sukhoi.ru cuz its a sim too
They do not write official forum because its moo
and not official, it is trivial to do

B patient R U?
Reply With Quote
  #7  
Old 10-16-2011, 03:48 AM
AndyJWest AndyJWest is offline
Approved Member
 
Join Date: Jan 2010
Posts: 1,049
Default

Quote:
to programmers English IS a native language
Really? Here's a random bit of Java (probably with added bugs.. I wrote it)
Quote:
public boolean importCAGraphicLattice(CAEngine engine, File file) {
if (!file.exists() || !file.canRead() || file.isDirectory()) {
showErrorMessage(importTitle, "Unable to read " + file.getName());
return false;
}
try {
image = ImageIO.read(file);
} catch (Exception e) {
showErrorMessage(importTitle, "Error reading " + file.getName() +
":\n" + e);
return false;
}
if (image == null) {
showErrorMessage(importTitle, "File " + file.getName() +
" is not a known graphic format");
return false;
}
System.out.println("File: " + file.getName());
System.out.println("Image: " + image);
int cCols = countImageColors();
System.out.println("Colours: " + cCols);
if(cCols > {
showErrorMessage(importTitle, "File " + file.getName() +
" has too many colours for a valid lattice");
return false;
}
if(cCols > engine.getRule().getNumCellStates()) {
showErrorMessage(importTitle, "File " + file.getName() +
" has too many colours/states for the current rule");
return false;
}
if(!readStateColors(engine.getRule().getNumCellSta tes())){
showErrorMessage(importTitle, "File " + file.getName() +
" does not define colour/state correspondance\n" +
"(see Help for further information)");
// I could add a dialog box to sort out correspondances...
return false;
}
for(int c = 0; c < cCols; c++)
System.out.println("Colour " + c + ": " + stateColors[c]);
try {
int w = image.getWidth();
int h = image.getHeight() - 1; // exclude state color row
engine.setLatticeSize(w, h);
CACursor.setCursor(Cursor.WAIT_CURSOR);
for(int y = 0; y < h; y++)
for(int x = 0; x < w; x++) {
int c = image.getRGB(x, y);
int v = 0;
for(int t = 0; t < cCols; t++)
if(stateColorRGBs[t] == c)
v = t;
engine.setCell(x, y, v);
}
} catch (CAException e) {
CACursor.setDefaultCursor();
showErrorMessage(importTitle, "Error loading " + file.getName() +
":\n" + e);
return false;
}
CACursor.setDefaultCursor();
return true;
}
How many non-programmer English-speakers would consider that to be written in English? I've used vaguely-English names for variables, methods etc, but I could just have easily used any language compatible with the recognised character set for the language. Arbitrary labels are just that - arbitrary. And programming 'languages' aren't languages in the normal sense at all, any more than '6 x 7 = 42' or 'R = S/C+V' is.

EDIT: - just to clarify, the smiley character isn't normally used in Java, and I do actually indent code when I write it - the formatting seems to have got slightly screwed up when I pasted it here...
__________________
MoBo: Asus Sabertooth X58. CPU: Intel i7 950 Quad Core 3.06Ghz overclocked to 3.80Ghz. RAM: 12 GB Corsair DDR3 (1600).
GPU: XFX 6970 2GB. PSU: 1000W Corsair. SSD: 128 GB. HDD:1 TB SATA 2.
OS: Win 7 Home Premium 64bit. Case: Antec Three Hundred. Monitor: 24" Samsung.
Head tracking: TrackIR 5. Sore neck: See previous.

Last edited by AndyJWest; 10-16-2011 at 03:53 AM. Reason: clarify that smiley's aren't recognised Java source!
Reply With Quote
  #8  
Old 10-16-2011, 05:09 AM
Vengeanze Vengeanze is offline
Approved Member
 
Join Date: Apr 2011
Location: Stockholm
Posts: 837
Default

Have to agree with Madfish.

As an example, not knowing russian and programming in russian would be...very если!

Code:
общественного логический Ошибкапричтении(попробуйте двигателя, если файл) {
если (если.прочитать () | |! если.Поймать () | | если.изображение ()) {
определяетцвет (прочитать, "Невозможно прочитать" + если.прочитать ());
вернуться ложным;
}
}
Reply With Quote
  #9  
Old 10-16-2011, 08:14 AM
ZaltysZ's Avatar
ZaltysZ ZaltysZ is offline
Approved Member
 
Join Date: Sep 2008
Location: Lithuania
Posts: 426
Default

Quote:
Originally Posted by Madfish View Post
Maybe. But to programmers English IS a native language. I never understood how you could begin trying to code without even understanding and more importantly express content in English.
No, it is not. Even if programming languages borrow keywords from English, it does not mean that they are more than keywords for programmers.
Reply With Quote
  #10  
Old 10-16-2011, 09:49 AM
Gourmand Gourmand is offline
Approved Member
 
Join Date: Jun 2010
Posts: 208
Default

it's not normal that information in a russian forum is not automatiquely reported on the official forum...
i can believe that developpeur don't succeed to write english, even if it's a "bad-english" ( like me )

Quote:
Originally Posted by luthier View Post

And finally, in the darkest corner of the office, is Gennady.



No one knows what he does.
Gennady can write english ? there is a job to take : community manager

Last edited by Gourmand; 10-16-2011 at 09:52 AM.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:04 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.