Get a float array using dini
#1

I want to read from file a float array like this

Код:
{-1956.7854, 260.8535, 41.0470, 242.0}, // homespawn
{-1945.3067, 263.1175, 41.0470, 17.3}, // homespawn
{-1947.7381, 270.8883, 41.0534, 25.6}, // homespawn
{-1953.1245, 275.0979, 41.0470, 17.3}, // homespawn
{-1955.9945, 289.3790, 41.0470, 332.3}, // homespawn
{-1954.5942, 302.5281, 41.8934, 17.3}, // homespawn
{-1957.5754, 299.2217, 41.6033, 197.3}, // homespawn
{-1951.0284, 298.5231, 41.0470, 8.2}, // homespawn
{-1949.4483, 273.8665, 41.8443, 257.8}, // homespawn
{-1951.1414, 265.9249, 41.8710, 130.5}, // homespawn
{-1946.6102, 256.0560, 41.1962, 242.3}
How to get it from file?? How i write it in the file? I want to use dini...
Reply
#2

https://sampwiki.blast.hk/wiki/Useful_Fu....28Dini.inc.29

http://forum.sa-mp.com/index.php?topic=981.0

http://forum.sa-mp.com/index.php?topic=126584.0

Try reading some of these threads, they might help you .
Reply
#3

They not help me
Reply
#4

floatstr?
Reply
#5

se vuoi farlo col dini non puoi leggere matrici... ma ogni float singola tipo


x=0.00000
y=0.00000

ecc...


se non ricordo male si fa cosi... cmq c'и una discussione su gta expert che aveva fatto alle... vedi di trovarla asd

ongamemodeinit

Код:
if(!dini_Exists("p.txt"))
{
dini_Create("p.txt");
}
x scrivere


Код:
dini_Set("p.txt", "x", "0.0000");
x leggere


Код:
string = dini_Get("p.txt", "x");
http://forum.sa-mp.com/index.php?topic=71935.0
Reply
#6

Quote:
Originally Posted by ft941
se vuoi farlo col dini non puoi leggere matrici... ma ogni float singola tipo


x=0.00000
y=0.00000

ecc...


se non ricordo male si fa cosi... cmq c'и una discussione su gta expert che aveva fatto alle... vedi di trovarla asd

ongamemodeinit

Код:
if(!dini_Exists("p.txt"))
{
dini_Create("p.txt");
}
x scrivere


Код:
dini_Set("p.txt", "x", "0.0000");
x leggere


Код:
string = dini_Get("p.txt", "x");
http://forum.sa-mp.com/index.php?topic=71935.0
non mi serve... ste cose le so giа fare... a me serve farlo in matrice
Reply
#7

non credo si possa fare
Reply
#8

English for god sakes. This forum has rules.
Reply
#9

UP
Reply
#10

If you still need to know. I would scrap dini for this purpose and just fread. Use sscanf to "extract" the values from the string. Use format then write of course.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)